Category: Intunes

Deployment: Find GUID to Uninstall Software Silent W7/8 32/64BIT

Go through these Key Recursive and check for the value “UninstallString” under the GUID’s. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall MsiExec.exe /I{2F72F540-1F60-4266-9506-952B21D6640D} So Uninstall Silent of possible would be: MsiExec.exe /x{2F72F540-1F60-4266-9506-952B21D6640D } /qn REBOOT=ReallySuppress If the Uninstall works depends on the software and if the, as example, MSI Source file is STILL under The location mentioned in key: “InstallSource” […]

ODBCCONF.exe command line tool for generating ODBC Entry

ODBCCONF.exe is a command-line tool that allows you to configure ODBC drivers and data source names. http://msdn.microsoft.com/en-us/library/ee388579(VS.85).aspx ODBCConf ConfigSysDSN “SQL Server” “DSN=LocalODBCConnection|SERVER=(local)” for MySQLODBCConf ConfigSysDSN “MySQL” “DSN=LocalODBCConnection|SERVER=MySQL_ServerName” To get the correct Connection String for your DB reference this site: http://www.connectionstrings.com/ Do understand the difference between SYSTEM and USER DNS: http://digital.ni.com/public.nsf/allkb/852559036FB6447380256ADF007C3964 You cant’ give over username and password for […]