maggio 2006 Blog Posts
How to transfer the logins and the passwords between instances of SQL Server 2005 http://support.microsoft.com/kb/918992
Il .NET framework 2.0 ha aggiunto alcuni nuovi editor, ad esempio ora esiste un editor per stringe di connessione (seppur minimalistico) di seguito un'esempio per utilizzarlo:
''' <summary>''' Stringa di connessione.''' </summary>''' <value></value>''' <returns></returns>''' <remarks></remarks><System.ComponentModel.Editor("System.Web.UI.Design.ConnectionStringEditor, System.Design", GetType(System.Drawing.Design.UITypeEditor)), _System.ComponentModel.Description("Stringa di connessione."), _System.ComponentModel.DefaultValue("")> _Public Property ConnectionString As String
Al seguente link un'elenco di editor che ereditano da UITypeEditor:http://msdn2.microsoft.com/it-it/library/bfc7teys.aspx
How to enumerate the software products that are installed on a computer by using the My namespace in Visual Basic 2005http://support.microsoft.com/kb/914357
Siccomme a volte capita di dover implementare l'interfaccia System.ComponentModel.ICustomTypeDescriptor e creare un PropertyDescriptor Custom per rendere dinamico il comportamento di proprietà mi sono fatto un esempio da cui partire che rende una proprietà ReadOnly o meno sulla basa del valore di una seconda proprietà.
http://blogs.ugidotnet.org/alexblog/articles/41383.aspx
L'esempio è in VB.NET 2005, ma il codice funziona anche con le versioni precedenti del framework.
Ho provveduto a migliorare il mio script per inviare mail tramite CDOSYS in modo da suportare attach multipli.http://blogs.ugidotnet.org/alexblog/articles/40784.aspx
Inoltre venerdì è stato pubblicato nella sezione Scripts di Sysadmin.it:http://www.sysadmin.it/pages/script/script.asp?ID=137
Cumulative hotfix package (build 2153) for SQL Server 2005 is available http://support.microsoft.com/kb/918222 How to use the Sqldumper.exe utility to generate a dump file in SQL Server 2005http://support.microsoft.com/kb/917825
How to uninstall an instance of SQL Server 2005 manually http://support.microsoft.com/kb/909967
You cannot control the behavior that occurs when a user presses ENTER when you add a ToolStripComboBox control to a Windows Application project that uses the .NET Framework 2.0 http://support.microsoft.com/kb/905720
A new Volume Shadow Copy Service update is now available that fixes various Volume Shadow Copy Service problems in Windows Server 2003http://support.microsoft.com/kb/913648
MDAC Component Checker http://go.microsoft.com/?linkid=4935017
Microsoft Shared Computer Toolkit for Windows XP version 1.1 http://go.microsoft.com/?linkid=4935020
Il framework 2.0 ha introdotto il nuovo namespace System.Net.Mail per inviare posta tramite il protocollo SMTP.
Per gestire l'autenticazione verso un SMTP occorre instaziare un oggetto System.Net.NetworkCredential come mostrato nel seguente esempio che invia una mail utilizzando l'SMTP di Virgilio:
Dim message As New System.Net.Mail.MailMessage("mailfrom@dom.it", "mailto@virgilio.it", "Obj", "Body")Dim client As New System.Net.Mail.SmtpClient("out.virgilio.it")client.Credentials = New System.Net.NetworkCredential("mailto@virgilio.it", "password")client.Send(message)message.Dispose()
How to play .wav sound files and system sounds by using the My namespace in Visual Basic 2005http://support.microsoft.com/kb/914353 How to use the My.Computer.Network object to upload and download files in Visual Basic 2005http://support.microsoft.com/kb/914355
Questo tool free di slipstreaming basato su .NET 2.0 continua a crescere, ora sono disponibili alcuni addon per integrare già diversi applicaticati nel cd generato oltre alla possibilità di personalizzare l'installazione.Al momento supporta: Windows 2000, XP x86/x64 e 2003 x86/x64.
http://www.nliteos.com/index.html
Oggi ho avuto a che fare con una modifica di un vecchio programma in C per un lettore a codici a barre.Il problema è sorto quando ho eseguito il batch che un tempo girava su W98 per compilare, linkare e trasferire il programma sul lettore in quanto il seguente comando non veniva accettato:C:\C51\BIN\L51 &<DS_LINK.cmd
Il problema sta nel fatto che il carattere & non viene accettato in 2000/XP e il comando va modificato come segue:
C:\C51\BIN\L51 ^&<DS_LINK.cmd
Da tenere presente se si ha a che fare con vecchi batch che giravano su W9x.
Il seguente batch propone una soluzione per eseguire il backup tramite l'utility NTBACKUP e inviare il log generato tramite mail usando lo script sendmail.vbs.
SETLOCALSET user=%UserProfile%SET folder=%USERPROFILE%\Impostazioni locali\Dati applicazioni\Microsoft\Windows NT\NTBackup\dataREM Eliminazioe log precedentiDEL /Q "%folder%\backup*.log"REM Avvio Backupntbackup backup C:\Test /m normal /f "F:\backup.bkf" /V:yes /L:fREM Invio log file BackupFOR /f "Tokens=*" %%a IN ('dir "%folder%\backup*.log" /b /O-D') DO sendmail.vbs -smtp smtpserver -t BackupOperator@domain.it -f ntbackup@domain.it -s "Backup" -b "See Attach for backup log." -a "%folder%\%%a"
Al seguente link trovate uno script per inviare una mail tramite CDOSYS sulla falsa riga di quello nella KB di Microsoft che faceva però uso di CDONTS:
http://blogs.ugidotnet.org/alexblog/articles/40784.aspx
How to change the Volume Licensing product key on a Windows XP or a Windows 2003-based computer http://support.microsoft.com/kb/918342
Working with Web Resources in ASP.NET 2.0http://support.microsoft.com/kb/910442
MS-DOS-based programs do not run as expected on a computer that is running Windows Server 2003, Windows XP, or Windows 2000http://support.microsoft.com/kb/890067
La settimana scorsa è stato pubblicato su SysAdmin.it un mio articolo che descrive come creare una versione di Windows XP/2003 avviabile da CD/DVD utilizzando BartPE.La scelta è caduta su BartPe in quanto lo strumento Microsoft WinPE è disponibile solo ai Microsoft Certified Partners, IHV, ISV e ODM.Con Vista le cose cambieranno e WinPe 2.0 sarà disponobile a tutti gli utenti.
http://www.sysadmin.it/pages/guide/guide.asp?ID=80
Un rigraziamento a Gianluca Busiello e Stefano Bellisario per avermi calorosamente invitato a far parte della famiglia SysAdmin.it dove ho trovato veramente una grande volontà di condividere informazioni in ambito IT e un forum con persone preparate e attive.
Ciao mamma,
oggi purtroppo ti ho salutato per l'ultima volta, ...