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

luglio 2006 Blog Posts

Nascondere la visualizzazione delle sottoproprietà

Creando controlli o componenti custom capita di creare proprietà che referenzino oggetti e in molti casi si vorrebbe evitare di vedere le proprietà di questi oggetti. In questi casi basta applicare alla proprietà il seguente attributo:<System.ComponentModel.TypeConverter(GetType(System.ComponentModel.ReferenceConverter))> _Public Property MyConfirmButton() As System.Windows.Forms.Button

posted @ mercoledì 26 luglio 2006 20:01 | Feedback (1) | Filed Under [ Code & Snippet ]

ISA abilitare la traslazione dell'indirizzo originale del client nelle Server Publishing

In ISA 2000 con SP1 è possibile eseguendo modifiche al registro: http://support.microsoft.com/default.aspx?scid=kb;en-us;311777 In ISA 2004 invece la configurazione è possibile direttamente nel Tab To del server publishing rule seleziando Requests appear to come from the original client.

posted @ mercoledì 26 luglio 2006 10:31 | Feedback (2) | Filed Under [ Links Security IT ]

KB IIS 6.0 & SQL Server 2000

How to use the IIS Debug Diagnostics Tool to troubleshoot an IIS process that stops unexpectedlyhttp://support.microsoft.com/kb/919789 How to troubleshoot an IIS process that consumes lots of RAM by using the IIS Debug Diagnostics tool http://support.microsoft.com/kb/919790 You cannot remotely connect to a named instance of SQL Server 2000 by using the TCP/IP protocolhttp://support.microsoft.com/kb/922131

posted @ venerdì 21 luglio 2006 15:34 | Feedback (1) | Filed Under [ Links Database IT ]

KB XP & 2003 per problemi con USB

USB devices no longer work correctly after you install the Intel Chipset Software Installation Utility in Windows XP or in Windows Server 2003 http://support.microsoft.com/kb/921411 Una periferica USB connessa a un hub USB 2.0 non viene rilevata in Windows XP Service Pack 2, Windows Server 2003 Service Pack 1 o Windows Server 2003 versioni x64http://support.microsoft.com/kb/892050/it

posted @ mercoledì 19 luglio 2006 11:07 | Feedback (1) | Filed Under [ Links IT ]

Promosso a moderatore di SysAdmin.it

Vorrei ringraziare SysAdmin.it per avermi promosso a Moderatore ora non mi resta che meritarmi la fiducia che mi è stata concessa.Colgo anche l'occassione per fare i complimenti a tutto lo staff per l'impegno e la compentenza con cui gestiscono questa community IT.

posted @ martedì 18 luglio 2006 12:43 | Feedback (1) |

Mac-on-Stick

Per chi desidera avere sulla propria chiavetta USB non solo i dati ma anche le applicazioni il sito http://portableapps.com è un punto di riferimento dove trovare  Editor, Player, Browser, EMail Reader (a quando un portable OutLook Express?), Antivirus, etc..Nella sezione Operating System del sito è addirittura possibile scaricare Mac-on-Stick ovvero una versione per pen drive di MAC OS Classic 7.0.1:http://portableapps.com/apps/operating_systems/mac/mac-on-stick

posted @ martedì 18 luglio 2006 12:16 | Feedback (1) | Filed Under [ Links IT ]

KB SQL Server 2000, SQL Server 2005 & Word

How to configure SQL Server 2000 to use non-uniform memory access (NUMA) http://support.microsoft.com/kb/921928 SQL Server 2005 connectivity and Volume Shadow Copy Service (VSS) http://support.microsoft.com/kb/919023 How to troubleshoot problems that occur when you start or use Word 2007, Word 2003, or Word 2002 http://support.microsoft.com/kb/921541

posted @ martedì 18 luglio 2006 11:30 | Feedback (1) | Filed Under [ Links Database IT ]

ASP.NET 2.0 & Visual Studio .NET

How to embed resources in ASP.NET 2.0 assemblies http://support.microsoft.com/kb/910445 How to use application resource files (.resx) to efficiently create a localizable ASP.NET Web application http://support.microsoft.com/kb/917414 How to switch the IDE language in Visual Studio .NET 2002, Visual Studio .NET 2003, or Visual Studio 2005 http://support.microsoft.com/kb/919487

posted @ giovedì 13 luglio 2006 16:19 | Feedback (1) | Filed Under [ Links .NET Framework .NET Framework 2.0 ASP ]

Microsoft Dynamics NAV 4.0 SP3

A qunato pare il rilascio per la versione italiana è schedulato per Ottobre 2006:https://mbs.microsoft.com/partnersource/downloads/servicepack/MicrosoftDynamicsNAV40SP3 Dovrebbe consentire una maggiore integrazione con SQL Server 2005:https://mbs.microsoft.com/partnersource/documentation/systemrequirements/navsqlcommunication.htm Intanto sono disponibili: Microsoft Navision 4.0 Service Pack 1 Update 3https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?WTNTZSMNWUKNTMMYYUSKWOTVUNVLMRYSTZLOMXTXQLQUMLMM  Microsoft Navision 4.0 Service Pack 2 Update 1https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?WTNTZSMNWUKNTMMYYUSKWOTVUNVLMRYSLUZPUSPNPLZVMYKP

posted @ mercoledì 12 luglio 2006 17:29 | Feedback (52) | Filed Under [ Links Navision ]

Impostare l'attributo di un file tramite script

In DOS esiste il pratico comando ATTRIB:http://www.microsoft.com/technet/prodtechnol/windowsserver2003/it/library/ServerHelp/56202570-64a8-424b-8a11-09f5b8584cab.mspx?mfr=true In WSH invece è possibile ricorrere ad un codice del tipo che imposta l'attributo Archive per un singolo file o per tutti i file in una directory e relative subdirectory: WSH.echo ToggleArchiveBit("F:\test.txt") SetArchiveBit("F:\Test") Function ToggleArchiveBit(filePath)  Set objFSO = CreateObject("Scripting.FileSystemObject")  Set objFile = objFSO.GetFile(filePath)  If objFile.Attributes And 32 then       objFile.Attributes = objFile.Attributes XOR 32       ToggleArchiveBit = "Archive bit is cleared."  Else       objFile.Attributes = objFile.Attributes XOR 32       ToggleArchiveBit = "Archive bit is set."  End If End Function Function SetArchiveBit(Path)  Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFolder = objFSO.GetFolder(Path) Set colSubfolders = objFolder.Subfolders For Each objSubfolder in...

posted @ mercoledì 12 luglio 2006 15:57 | Feedback (2) | Filed Under [ Links Code & Snippet ]

KB CDO 2.0 & IIS 6.0

How to troubleshoot the "Could not create 'CDO.Message'" error message http://support.microsoft.com/kb/910360 How to use the Debug Diagnostics 1.0 tool to analyze a memory dump file http://support.microsoft.com/kb/921464

posted @ lunedì 10 luglio 2006 11:19 | Feedback (3) | Filed Under [ Links IT ]

Aggiornato articolo Windows Hooks

Su UgidotNet è stato aggiornato il mio articolo Windows Hooks per la versione .NET 2.0.Un grazie alla redazione sempre disponibile anche ad assecondare le pignolerie di articolisti come me.

posted @ lunedì 10 luglio 2006 09:59 | Feedback (2) | Filed Under [ Links .NET Framework 2.0 ]

Superato Esame 70-291 Implementing, managing and maintaining a Windows Server 2003 network infrastructure

Le mie impressioni sull'esame ...

posted @ giovedì 6 luglio 2006 18:08 | Feedback (5) | Filed Under [ Links IT ]

KB SQL Server 2005, Windows XP, Windows 2003 server & SMTP

The user is not assigned to a default schema when you use Windows authentication to connect the user to SQL Server 2005http://support.microsoft.com/kb/918346 Description of the Credential Roaming service update for Windows Server 2003 and for Windows XP http://support.microsoft.com/kb/907247 How to make the connection control apply to anonymous connections in an SMTP virtual server http://support.microsoft.com/kb/920600

posted @ lunedì 3 luglio 2006 15:23 | Feedback (2) | Filed Under [ Links Security Database IT ]

Powered by:
Powered By Subtext Powered By ASP.NET