Alex's Weblog

Weblog di Ermanno Goletto (Codename Alex - A Learning EXperience)
posts - 438, comments - 4214, trackbacks - 294

My Links

News

Il blog è stato
trasferito al
 seguente link:


DevAdmin Blog

Add my blog to Live

Foto

Curriculum Vitae


Il contenuto di questo blog e di ciascun post viene fornito “così come é”, senza garanzie, e non conferisce alcun diritto. Questo blog riporta il mio personale pensiero che non riflette necessariamente il pensiero del mio datore di lavoro.

Logo Creative Commons Deed


Logo MCTS

Logo MCSA

Logo MCP

Logo Microsoft Certified Business Management Solutions Professional

Microsoft Certified Business Management Solutions Specialist


Logo UGIdotNET UGIdotNET Contributor


Logo UGISS UGISS Contributor


Logo SysAdmin.it SysAdmin.it Staff


Article Categories

Archives

Post Categories

Blogs

Database

Development

Friends

IT

Knowledge Base

Links

MBS

MCP

MVP Sites

User Groups

Virtualization

ottobre 2005 Blog Posts

Reset del TCP/IP in Windows XP

A volte può tornare utile, sprattutto su PC infettati. How to reset Internet Protocol (TCP/IP) in Windows XPhttp://support.microsoft.com/kb/299357

posted @ mercoledì 26 ottobre 2005 15:09 | Feedback (2) | Filed Under [ Links IT ]

Microsoft Security Bulletin MS05-051 del 11-10-2005

Dopo aver letto il post di Mario ho fatto qualche ricerca ed effettivamente c'è qualche problema con il Microsoft Security Bulletin MS05-051 per maggiori info leggete questo articolo della KB: Systems that have changed the default Access Control List permissions on the %windir%\registration directory may experience various problems after you install the Microsoft Security Bulletin MS05-051 for COM+ and MS DTChttp://support.microsoft.com/default.aspx?scid=kb;en-us;909444

posted @ giovedì 20 ottobre 2005 15:00 | Feedback (1) | Filed Under [ Links Security IT ]

Manuali Navision 4.0 e SP1

Chi ha l'accesso al PartnerSource in quanto Partner MBS fino al 30 puù scaricare dalla sezione Training & Certification i seguenti manuali gratuitamente: 8404B: Navision 4.0 Service Pack 1 Installation and Configuration 8360B: Navision 4.0 Service Pack 1 Manufacturing I 8361B: Navision 4.0 Service Pack 1 Manufacturing II 8388B: Navision 4.0 Service Pack 1 Inventory Costing 8389B: Navision 4.0 Service Pack 1 Manufacturing Costing 8359B: Navision 4.0 Service Pack 1 C/SIDE Introduction Inoltre nella sezione Download & Updates -> Product Release e' disponibile l'immagine del SP1 (Inglese) nel quale c'è una soluzione C# d'esempio per utilizzare le API C/FRONT per accedere a Navision tramite applicazioni .NET.  

posted @ mercoledì 19 ottobre 2005 10:09 | Feedback (2) | Filed Under [ Navision .NET Framework ]

Quando Exchange è installato su un Domain Controller lo shut down o il reboot è lento

In effetti lo avevo notato e avevo pensato di aver fatto qualche errata configurazione, i puristi diranno il primo errore è stato quello di aver installato Exchange su un controller di dominio. A quanto pare invece la cosa è normale e a questo articolo trovate la spiegazione e un rimedio:http://support.microsoft.com/default.aspx?scid=kb;en-us;555025 Se poi volete approfondire vi suggerisco questo:http://www.msexchange.org/articles/Automating-Quicker-Exchange-2000-2003-DC-reboot.html  

posted @ venerdì 14 ottobre 2005 20:34 | Feedback (13) | Filed Under [ Links Tips IT ]

Versioni di .NET Framework e Visual Studio supportate su CPU a 64 bit

Dal seguente: Versions of the .NET Framework, Visual Studio, and Visual Studio .NET that are supported on 64-bit computershttp://support.microsoft.com/default.aspx?scid=kb;en-us;907750 Products x64-based computers Itanium-based computers Microsoft Visual Studio .NET (2002) No No Microsoft Visual Studio .NET (2003) Yes No Microsoft Visual Studio 2005 Yes No Microsoft .NET Framework 1.0 No No Microsoft .NET Framework 1.1 Yes Yes Microsoft .NET Framework 2.0 Yes Yes

posted @ venerdì 14 ottobre 2005 20:23 | Feedback (1) | Filed Under [ Links .NET Framework .NET Framework 2.0 ]

Avviare il Visualizzatore immagini e fax per Windows

Il Visualizzatore immagini e fax per Windows non è un'eseguibile bensì una funzionalità contenuta nella dll shimgvw.dll.Infatti se tramite Opzioni Cartella andiamo a vedere quale applicazione viene aperta quando in espora risorse facciamo doppio click su un file immagine notiamo che viene utilizzata la seguente:rundll32.exe C:\WINDOWS\System32\shimgvw.dll,ImageView_Fullscreen %1 Quindi possimao scrivere un codice di questo tipo per aprire un'immagine tramite il Visualizzatore: Dim p As New System.Diagnostics.Processp.StartInfo.FileName = "rundll32.exe"p.StartInfo.Arguments = System.IO.Path.Combine(System.Environment.SystemDirectory, "shimgvw.dll")p.StartInfo.Arguments &= ",ImageView_Fullscreen"p.StartInfo.Arguments &= " E:\MyImg.gif"p.StartInfo.UseShellExecute = Falsep.StartInfo.Verb = "open"p.Start() Analogamente è possibile stampare su una stampate a scelta: Dim p As New System.Diagnostics.Processp.StartInfo.FileName = "rundll32.exe"p1.StartInfo.Arguments = System.IO.Path.Combine(System.Environment.SystemDirectory, "shimgvw.dll")p.StartInfo.Arguments &= ",ImageView_PrintTo /pt"p.StartInfo.Arguments &= "...

posted @ martedì 11 ottobre 2005 20:45 | Feedback (8) | Filed Under [ Code & Snippet .NET Framework ]

Performance ridotte di Virtual PC 2004 sul chiset Centrino 915

When you run Virtual PC 2004 on a portable computer that uses the Intel Centrino 915 chipset, Virtual PC performance is reducedhttp://support.microsoft.com/default.aspx?scid=kb;en-us;899525 A questo punto si comincia ad aver voglia della SP2 di Virtual PC 2004 qualcuno sa quando esce?

posted @ lunedì 10 ottobre 2005 10:20 | Feedback (3) | Filed Under [ Links IT ]

Usare Internet Explorer come nonadmin

Se proprio non si riesce a non lavorare come Administrator sul proprio PC si può utilizzare il comando runas per avviare almeno Internet Explore con un account che abbia solo i privilegi di Users.Basta infatti crearsi per esempio un utente InternetUser appartenente solo al gruppo Users (e magari limitarne secondo le necessità ancora i provilegi).Quindi creare sul desktop un collegamento di questo tipo: runas.exe /savecred /user:InternetUser "C:\Programmi\Internet Explorer\IEXPLORE.EXE" Tramite /savecred evitiamo di digitare ogni volta password. In questo modo se sul PC abbiamo vari account per motivi di test o perchè dobiamo lavorare in contesti diversi riusciamo anche a centralizzare le impostazioni del...

posted @ lunedì 10 ottobre 2005 00:19 | Feedback (5) | Filed Under [ Tips Security IT ]

File downloader

A questo link trovate tra le altre un eseguibile che consente di scaricare file da link ftp e http:http://noeld.com/programs.asp?cat=misc#download In questo modo è possibile farsi dei bat per scaricare file quando questi vengono aggiornati. Eccone ad esempio uno per scaricare Stinger di McAffe e Sysclean di TrendMicro: ECHO Download Stingerstart /b /wait download.exe http://download.nai.com/products/mcafee-avert/stinger.exe /output:Stinger\stinger.exe /update ECHO Download SysCleanstart /b /wait download.exe ftp://ftp.antivirus.com/products/tsc/sysclean.zip /output:Downloads\SysClean.zip /update start /b /wait download.exe ftp://ftp.antivirus.com/products/pattern/lpt*.zip /output:Downloads\lpt.zip /update del SysClean\*.* /qunzip Downloads/SysClean.zip -d SysCleanunzip Downloads/lpt.zip -d SysClean

posted @ venerdì 7 ottobre 2005 19:55 | Feedback (2) | Filed Under [ Links Tips Security ]

Navision 4.0 Smarrimento password

Nel caso in cui si perda la password dell'utente SUPER la procedura per riaquistare l'accesso al database è la seguente: Digitare venti ? nel capo UserID della form di login Dovrebbe comparire un finestra con un codice Comunicare il codice al NSC (che contatta il supporto tecnico Microsoft) che dovrebbe restituire una password Digitare la password che vale solo una volta Questa è la procedura che funzionava fino alla 3.70 e anche se compare sul manuale Install & Configuration per la 4.0 pare che sia stata rimossa a per evitare la possibilità di lasciare questa backdoor...

posted @ venerdì 7 ottobre 2005 11:48 | Feedback (48) | Filed Under [ Tips Navision ]

KB Come utilizzare la NotifyIcon

How to use the Windows Forms NotifyIcon component in Visual Basic .NET to display an icon for an application in the notification areahttp://support.microsoft.com/?scid=kb;en-us;903898

posted @ lunedì 3 ottobre 2005 10:00 | Feedback (3) | Filed Under [ Links Code & Snippet .NET Framework ]

Powered by:
Powered By Subtext Powered By ASP.NET