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

novembre 2005 Blog Posts

Errore '800a0046' quando si utilizza il metodo Send di CDONTS.NewMail

L'errore si è verificato sul server Windows 2000 con Exchange dovendo fare una paginetta ASP per inviare delle mail in modo automatico. La Knowledge Base al seguente articolo http://support.microsoft.com/?kbid=197619 riporta quanto segue:Questo comportamento può verificarsi se l'account utente anonimo non dispone almeno di autorizzazioni di modifica per le cartelle del server di posta SMTP. Nel mio caso però ciò non ha risolto il problema la cui soluzione stava però in quest'altro articolo: Run-time error 800a0046 with CDONTS.Newmail objecthttp://support.microsoft.com/default.aspx?scid=kb;en-us;286301 Ho quindi creato una virtual directory per la pagina che doveva inviare la mail impostando per questa Virtual Directory la Protezione applicazione a Bassa (Processo IIS). Segnalo...

posted @ martedì 29 novembre 2005 19:09 | Feedback (2) | Filed Under [ Links Tips IT ]

SQL Server 2005 Requisiti di installazione

SQL Server 2005 Express Edition Readmehttp://support.microsoft.com/default.aspx?scid=kb;en-us;910229 SQL Server 2005 Readme and installation requirementshttp://support.microsoft.com/default.aspx?scid=kb;en-us;910228

posted @ giovedì 24 novembre 2005 16:00 | Feedback (2) | Filed Under [ Links Database ]

Errore Process performance counter is disabled, so the requested operation cannot be performed.

Per attivare i performance counter controllare che la registry key:HKLM\SYSTEM\CurrentControlSet\Services\PerfProc\Performance\Disable Performance Counters sia impostata a 0 

posted @ lunedì 21 novembre 2005 16:40 | Feedback (4) | Filed Under [ Tips IT ]

Ripristinare SMTP Virtual Server snap-in nella IIS Manager Console

Dal seguente articolo: The SMTP Virtual Server snap-in does not appear in IIS Manager Consolehttp://support.microsoft.com/default.aspx?scid=kb;en-us;906100 SYMPTOMSIf you perform one of the following actions, the default SMTP Virtual Server snap-in does not appear in Internet Information Servers Manager Console: You remove Internet Information Services (IIS) components   You remove and then reinstall Simple Mail Transfer Protocol (SMTP) components La soluzione a questo problema di IIS 6.0 è contenuta nel Service Pack 1 di Windows 2003 Server. Un'alternativa di registare manualmente lo snap-in come spiegato nell'articolo.

posted @ lunedì 21 novembre 2005 10:26 | Feedback (1) | Filed Under [ Links Tips IT ]

Feature Pack for Microsoft SQL Server 2005 - November 2005

Disponibile al seguente link:http://go.microsoft.com/?linkid=4218032 Comprende le seguenti features: Microsoft ADOMD.NET Microsoft Core XML Services (MSXML) 6.0 Microsoft OLEDB Provider for DB2 Microsoft Operations Manager 2005 Management Pack for Microsoft SQL Server 2005 (coming soon) Microsoft SQL Server 2000 DTS Designer Components Microsoft SQL Server Native Client Microsoft SQL Server 2005 Analysis Services 9.0 OLE DB Provider Microsoft SQL Server 2005 Backward Compatibility Components Microsoft SQL Server 2005 Command Line Query Utility Microsoft SQL Server 2005 Datamining Viewer Controls Microsoft SQL Server 2005 JDBC Driver Microsoft SQL Server 2005 Management Objects Collection Microsoft SQL Server 2005 Mobile Edition Microsoft SQL Server 2005 Notification Services...

posted @ lunedì 21 novembre 2005 10:17 | Feedback (5) | Filed Under [ Links Database ]

Articoli KB su SQL Server 2005

Ecco alcuni articoli della KB che potrebbero tornare utili: How to uninstall SQL Server Management Studiohttp://support.microsoft.com/default.aspx?scid=kb;en-us;909953 Scalable shared databases are supported by SQL Server 2005http://support.microsoft.com/default.aspx?scid=kb;en-us;910378 Release manifest for Microsoft SQL Server Native Client (9.00.1399.06)http://support.microsoft.com/default.aspx?scid=kb;en-us;910016 How to make sure that you are using Kerberos authentication when you create a remote connection to an instance of SQL Server 2005http://support.microsoft.com/default.aspx?scid=kb;en-us;909801

posted @ venerdì 18 novembre 2005 19:50 | Feedback (1) | Filed Under [ Links Database ]

Scaricare un file da una pagina web

Private Sub DownloadFile(ByVal url As String, ByVal filePath As String)      Dim webRequest As System.Net.WebRequest = System.Net.HttpWebRequest.Create(url)     Dim webResponse As System.Net.WebResponse = webRequest.GetResponse()     Dim inputStream As System.IO.Stream = webResponse.GetResponseStream()      Dim buffer(CInt(webResponse.ContentLength) - 1) As Byte     inputStream.Read(buffer, 0, buffer.Length)      inputStream.Close()     webResponse.Close()     inputStream = Nothing     webResponse = Nothing     webRequest = Nothing      Dim fileStream As New System.IO.FileStream(filePath, IO.FileMode.CreateNew)     Dim outputStream As New System.IO.BinaryWriter(fileStream)      outputStream.Write(buffer)      buffer = Nothing     outputStream.Close()     fileStream.Close()     outputStream = Nothing     fileStream = Nothing End Sub

posted @ venerdì 18 novembre 2005 19:40 | Feedback (1) | Filed Under [ Code & Snippet .NET Framework ]

Bug di VS2005 nel metodo XmlReader.ReadToNextSibling

Dal seguente: BUG: Your application may stop responding when you use the XmlReader.ReadToNextSibling method in Visual Studio 2005http://support.microsoft.com/default.aspx?scid=kb;en-us;906724 SYMPTOMSConsider the following scenario. In Microsoft Visual Studio 2005, you use the XmlReader.ReadToNextSibling method in the System.Xml namespace to advance the XmlReader object to the next sibling element. The value of the ReadState property of the XmlReader object is ReadState.Initial (ReadState Enumeration). In this scenario, an internal infinite loop may occur, and your application may stop responding (hang). WORKAROUNDTo work around this issue, you must run the Read method of the XmlReader object before you use the XmlReader.ReadToNextSibling method. This operation can move the XmlReader...

posted @ giovedì 17 novembre 2005 09:58 | Feedback (2) | Filed Under [ Links .NET Framework 2.0 ]

Knowledge Base per prodotti Microsoft Business Solutions

Ecco un articolo che indica dove trovare la Knowledge per i prodotti Microsoft Business Solutions: How to access Knowledge Base content for Microsoft Business Solutions productshttp://support.microsoft.com/default.aspx?scid=kb;en-us;899357 In sostanza se si è un Microsoft Business Solutions Partners su https://mbs.microsoft.com/partnersourcementre se si è un cliente Microsoft Business Solutions su https://mbs.microsoft.com/customersource. Entrambi i link richiendono autenticazione tramite Passport.

posted @ mercoledì 16 novembre 2005 10:22 | Feedback (121) | Filed Under [ Links Navision ]

Windows SharePoint Services e SharePoint Portal Server 2003 non sono supportati in VPC e VS

Stando a questo articolo i due prodotti in oggetto non sono supportati in ambienti di produzione su Virtual PC e Virtual Server. Windows SharePoint Services and SharePoint Portal Server 2003 do not support Virtual PC and Virtual Server for production environmentshttp://support.microsoft.com/default.aspx?scid=kb;en-us;909840 Leggendo poi l'articolo correlato:Windows Server System software not supported within a Microsoft Virtual Server environmenthttp://support.microsoft.com/kb/897614/en-us Si scopre che su Virtual Server 2005 non lo sono neppure i seguenti prodotti: Microsoft Speech Server Microsoft Certificate Server Microsoft ISA Server Microsoft Exchange Server Ciò non significa ovviamente che non si possano installare, ma ovviamente in caso di problemi non sarà possibile avvalersi del supporto tecnico. [Update]Per completezza,...

posted @ martedì 15 novembre 2005 11:54 | Feedback (5) | Filed Under [ Links IT ]

Migliorare l'uso della memoria da parte di MSDE in ISA2004

Una delle feature di ISA 2004 era quella di poter memorizzare i logs all'interno di una datbase utilizzando MSDE questo spiana la strada ad applicazioni che vogliano analizzare i logs, basta infatti fare delle query sul database invece di addentrasi nel modelo ad oggetti di ISA. Anche se io quando non utilizzo questo tipo di approccio, soprattutto in piccole installazioni, continuo ad utilizare i log su file per evitare un componente e una posibile fonte di criticità, va comunque detto che nel 2005 per SQL Server non sono ancora stati rilasciati bollettini di sicurezza. Stando a questo articolo You may experience high memory usage...

posted @ martedì 15 novembre 2005 10:35 | Feedback (2) | Filed Under [ Links Tips Database ]

Come ricavare il colore del pixel puntato dal mouse

E' stato pubblicato un'articolo sulla KB per realizzare la feature in oggetto in C# che fa uso di PInvoke: How to use Visual C# to obtain the color of the pixel that is referenced by the mouse pointerhttp://support.microsoft.com/default.aspx?scid=kb;en-us;892462

posted @ martedì 15 novembre 2005 10:14 | Feedback (1) | Filed Under [ Links Code & Snippet .NET Framework ]

Windows Memory Diagnostic

Se a qualcuno servisse sul sito Microsoft è disponibile un tool per testare la memoria del PChttp://oca.microsoft.com/en/windiag.asp

posted @ lunedì 14 novembre 2005 15:37 | Feedback (2) | Filed Under [ Links IT ]

Creazione immagine dell'SO con Sysprep

Un articolo su come creare un'immagine del sistema operativo da utilizzare poi con Virtual PC:http://www.windowsnetworking.com/articles_tutorials/Creating-Sysprep-Image-Library-Virtual-PC.html Sempre dello stesso autore un articolo su come creare Setup Unattended personalizzati:http://www.windowsnetworking.com/articles_tutorials/Customizing-Unattended-Setup.html

posted @ venerdì 11 novembre 2005 10:41 | Feedback (2) | Filed Under [ Links IT ]

Navision Internal error 2 in module 10

Una soluzione a questo errore è riportata in questo articolohttps://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?WTNTZSMNWUKNTMMYMXTYYKSWTLKQNNOXZMXWWZWNZUMWNYKRQOVQMMWOLSUQRKNMVYMUKMYQZZWVVXLKXPNXLUNNXOPKWPPLOYWWVOYYNXMUTQUW (l'articolo è però riservato ai Partner e per leggerelo occorre autenticarsi).

posted @ giovedì 3 novembre 2005 15:55 | Feedback (98) | Filed Under [ Links Tips Navision ]

Powered by:
Powered By Subtext Powered By ASP.NET