I have a software audit database and wanted a quick access button to computer management, so i can check peoples hardware against my list.
I have tried ;
Dim stAppName As String
stAppName = "c:winntsystem32compmgmt.msc"
Call Shell(stAppName, 1)
and recieve message 'invalid procedure call or argument'
also would it be possible to take the computers network name which is in a text box 'compname' and automatically connect to this computer using computer management.
Have created a button that opens the default admin share
Dim stAppName As String
stAppName = "C:WINNTexplorer.exe"
stAppName = stAppName & " " & CompName & "c$"
Call Shell(stAppName, 1)
but the computer management seems to be abit beyond me at the moment
![]()



