06 March 2009

(C:\WINDOWS\IsUninst.exe)Uninstall Softwares with Batch file where you don;t have the msi commands

IsUninst.exe
 
Yes you can do a uninstall if you don;t have .msi files also.
 
 
below are the two software commands to where i tried with batch file
 
 
QuanvertDBA Software C:\WINDOWS\IsUninst.exe -y -x -a -fC:\qtime\qt\Undv5.7
Quantum57 Software C:\WINDOWS\IsUninst.exe -y -x -a -fC:\qtime\qt\Unv5.7
 
by adding y -x -a user window and prompting will not be display
 
 
-------------------
Thanks,
http://sccm07.blogspot.com/

(C:\WINDOWS\IsUninst.exe)Uninstall Softwares with Batch file where you don;t have the msi commands

IsUninst.exe
 
Yes you can do a uninstall if you don;t have .msi files also.
 
 
below are the two software commands to where i tried with batch file
 
 
QuanvertDBA Software C:\WINDOWS\IsUninst.exe -y -x -a -fC:\qtime\qt\Undv5.7
Quantum57 Software C:\WINDOWS\IsUninst.exe -y -x -a -fC:\qtime\qt\Unv5.7
 
by adding y -x -a user window and prompting will not be display
 
 
-------------------
Thanks,
http://sccm07.blogspot.com/

03 March 2009

FIND SQL Server Version with SQL Query

 
 
SELECT LTRIM(RIGHT(LEFT(@@VERSION,38),9))
SELECT 'SQL Server '    

+ CAST(SERVERPROPERTY('productversion') AS VARCHAR) + ' - '    

+ CAST(SERVERPROPERTY('productlevel') AS VARCHAR) + ' ('    

+ CAST(SERVERPROPERTY('edition') AS VARCHAR) + ')'

-------------------
Thanks,
http://sccm07.blogspot.com/

FIND SQL Server Version with SQL Query

 
 
SELECT LTRIM(RIGHT(LEFT(@@VERSION,38),9))
SELECT 'SQL Server '    

+ CAST(SERVERPROPERTY('productversion') AS VARCHAR) + ' - '    

+ CAST(SERVERPROPERTY('productlevel') AS VARCHAR) + ' ('    

+ CAST(SERVERPROPERTY('edition') AS VARCHAR) + ')'

-------------------
Thanks,
http://sccm07.blogspot.com/