Click here to Skip to main content
15,918,624 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: simple way Pin
Vasudevan Deepak Kumar11-Jul-07 3:22
Vasudevan Deepak Kumar11-Jul-07 3:22 
Questionasp development Pin
chandu_shar10-Jul-07 23:06
chandu_shar10-Jul-07 23:06 
AnswerRe: asp development Pin
Vasudevan Deepak Kumar10-Jul-07 23:24
Vasudevan Deepak Kumar10-Jul-07 23:24 
QuestionDocument Referrer Pin
L Viljoen10-Jul-07 20:56
professionalL Viljoen10-Jul-07 20:56 
AnswerRe: Document Referrer Pin
Michael Sync10-Jul-07 21:20
Michael Sync10-Jul-07 21:20 
AnswerRe: Document Referrer Pin
L Viljoen10-Jul-07 21:22
professionalL Viljoen10-Jul-07 21:22 
GeneralRe: Document Referrer Pin
Michael Sync10-Jul-07 22:37
Michael Sync10-Jul-07 22:37 
QuestionRetriving exe path Pin
Sachin Pimpale10-Jul-07 19:33
Sachin Pimpale10-Jul-07 19:33 
hi
i want to Retrive full exe path of installed software from Following code i get only the message that the software exeist or not

Set objFSO   = CreateObject("Scripting.FileSystemObject")<br />
set oWscript = CreateObject("WScript.Shell")  <br />
dim lstsft<br />
dim mylist <br />
dim i,j<br />
'<---------------------------------><br />
	call getInstalledList ()<br />
'<---------------------------------><br />
Private sub getInstalledList ()<br />
dim chk<br />
mylist = split("Symantec AntiVirus,MSXML 4.0 SP2 Parser and SDK", ",")<br />
strComputer = "."<br />
Set objWMIService = GetObject("winmgmts:" _<br />
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")<br />
Set colSoftware = objWMIService.ExecQuery _<br />
    ("Select * from Win32_Product")<br />
lstsft=""<br />
For Each objSoftware in colSoftware<br />
    lstsft = lstsft & "," & objSoftware.Caption  <br />
Next<br />
lstsft= split (lstsft,",")<br />
for i = 0 to ubound(mylist)<br />
chk="0"<br />
	for j=0 to ubound(lstsft)				<br />
		if lstsft(j) = mylist (i) then<br />
			msgbox(mylist(i) & " exist" ) <br />
			chk="1"	<br />
		end if <br />
next	<br />
if chk = "0" then<br />
	msgbox ( mylist(i) & " not exist")<br />
end if <br />
next<br />
end Sub


so HOW I GET PATH OF exe using VBScript

Thanks in advance




SP
--
Bugs can neither be created nor be removed from software by a developer. They can only be converted from one form to another. The total number of bugs in the software always remain constant.

Questionset an id for my website Pin
miss khawaja10-Jul-07 9:45
miss khawaja10-Jul-07 9:45 
AnswerRe: set an id for my website Pin
Michael Sync10-Jul-07 19:34
Michael Sync10-Jul-07 19:34 
QuestionWeb Service call from PC Program error Pin
Kschuler10-Jul-07 7:55
Kschuler10-Jul-07 7:55 
AnswerRe: Web Service call from PC Program error Pin
kubben11-Jul-07 2:51
kubben11-Jul-07 2:51 
GeneralRe: Web Service call from PC Program error Pin
Kschuler11-Jul-07 3:00
Kschuler11-Jul-07 3:00 
GeneralRe: Web Service call from PC Program error Pin
kubben11-Jul-07 3:17
kubben11-Jul-07 3:17 
GeneralRe: Web Service call from PC Program error Pin
kubben11-Jul-07 3:18
kubben11-Jul-07 3:18 
QuestionAdding a searchable database on site Pin
Red Lake10-Jul-07 6:02
Red Lake10-Jul-07 6:02 
AnswerRe: Adding a searchable database on site Pin
Christian Graus10-Jul-07 6:29
protectorChristian Graus10-Jul-07 6:29 
GeneralRe: Adding a searchable database on site Pin
Red Lake10-Jul-07 6:35
Red Lake10-Jul-07 6:35 
GeneralRe: Adding a searchable database on site Pin
Christian Graus10-Jul-07 7:16
protectorChristian Graus10-Jul-07 7:16 
Questionweb method URI Pin
Brent Lamborn10-Jul-07 4:26
Brent Lamborn10-Jul-07 4:26 
AnswerRe: web method URI Pin
Michael Sync10-Jul-07 19:37
Michael Sync10-Jul-07 19:37 
QuestionCalling Javascript from vbScript Pin
#realJSOP10-Jul-07 4:21
professional#realJSOP10-Jul-07 4:21 
AnswerRe: Calling Javascript from vbScript Pin
Christian Graus10-Jul-07 5:28
protectorChristian Graus10-Jul-07 5:28 
GeneralRe: Calling Javascript from vbScript Pin
Atif Ali Bhatti10-Jul-07 7:55
Atif Ali Bhatti10-Jul-07 7:55 
AnswerRe: Calling Javascript from vbScript Pin
Guffa10-Jul-07 9:34
Guffa10-Jul-07 9:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.