ottobre 2005 Blog Posts
A volte può tornare utile, sprattutto su PC infettati.
How to reset Internet Protocol (TCP/IP) in Windows XPhttp://support.microsoft.com/kb/299357
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
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.
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
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
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 &= "...
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?
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...
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
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...
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