Bert Posted February 7, 2006 Posted February 7, 2006 (edited) Is this right? It goes so fast I can't tell. Run(@ComSpec & " /c C:\WINDOWS\SYSTEM32\REGSVR32.EXE C:\WINDOWS\SYSTEM32\tabctl32.ocx") Edited February 7, 2006 by vollyman The Vollatran project My blog: http://www.vollysinterestingshit.com/
w0uter Posted February 7, 2006 Posted February 7, 2006 (edited) use /k (keep) inead of /c (close) to keep the window open. Edited February 7, 2006 by w0uter My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll
Bert Posted February 7, 2006 Author Posted February 7, 2006 I tried changing the runwait line to this to account for the variable name of windows/system32, but I can't get it to work Runwait(@ComSpec & /c @SystemDir & "REGSVR32.EXE /S" @SystemDir & $file) The Vollatran project My blog: http://www.vollysinterestingshit.com/
flaxcrack Posted February 7, 2006 Posted February 7, 2006 Try Runwait(@ComSpec & " /c " & @SystemDir & "REGSVR32.EXE /S " @SystemDir & $file) [quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD()
MHz Posted February 7, 2006 Posted February 7, 2006 (edited) I tried changing the runwait line to this to account for the variable name of windows/system32, but I can't get it to work Edited February 7, 2006 by MHz
Bert Posted February 7, 2006 Author Posted February 7, 2006 @flax - syntax error @MHz - unknown function The Vollatran project My blog: http://www.vollysinterestingshit.com/
MHz Posted February 7, 2006 Posted February 7, 2006 (edited) Try this. This should work ok. Ensure $file is just the filename with it's extension. RunWait('Regsvr32 /s "' & @SystemDir & '\' & $file & '"') It will be silent with the /s being used. Edit: Fixed typo Edited February 7, 2006 by MHz
Bert Posted February 7, 2006 Author Posted February 7, 2006 Try this. This should work ok. Ensure $file is just the filename with it's extension. RunWait('Rersvr32 /s "' & @SystemDir & '\' & $file & '"') It will be silent with the /s being used. Thats got it. Thanks! The Vollatran project My blog: http://www.vollysinterestingshit.com/
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now