windows security center + my documents
I am trying to open windows security center using the shell command.
do you open it like msc files if so what do you open it with
VB Code:
taskid = Shell("wscui.cpl", vbNormalFocus)
also just wondering how do you open the my documents folder as an argument with explorer, i have tried
VB Code:
shell "explorer.exe Mydocs"
Re: windows security center + my documents
not sure about the security center
but mydocs needs the full path..something like this
VB Code:
Shell "explorer.exe " & chr(34) & "C:\Documents and Settings\xxxx\My Documents" & chr(34)
Re: windows security center + my documents
Quote:
Originally Posted by Static
not sure about the security center
but mydocs needs the full path..something like this
VB Code:
Shell "explorer.exe " & chr(34) & "C:\Documents and Settings\xxxx\My Documents" & chr(34)
I was hoping that you didn't have to type the username
Re: windows security center + my documents
I have figured it out, i thought i would post the code incase somebody needs it at a later date.
VB Code:
Shell "control.exe wscui.cpl"