Comment faire un VBS pour plusieurs actions
Résolu/Fermé
A voir également:
- Comment faire un VBS pour plusieurs actions
- Vbs windows - Accueil - Optimisation
- Actions fans - Accueil - Guide arnaque
- Cette action ne peut pas être réalisée car le fichier est ouvert dans un autre programme - Guide
- Virginie n’a pas les droits d’administrateur sur son ordinateur. quelles sont les actions qu’elle ne peut pas faire ? ✓ - Forum Windows 7
- L'administrateur a interdit l'accès ......... ✓ - Forum Windows
1 réponse
Explique mieux
si tu veux voila des codes
modifier valeur registre
Set WshShell = CreateObject("WScript.Shell")
WshShell.RegWrite "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\AntiVirusDisableNotify", "1"
Set WshShell = Nothing
supprimer clé
Const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\default:StdRegProv")
strKeyPath = "SOFTWARE\lol"
oReg.DeleteKey HKEY_LOCAL_MACHINE, strKeyPath
tester l'existence d'une clé
Function RegExists(value)
On Error Resume Next
Set WS = CreateObject("WScript.Shell")
val = WS.RegRead(value)
If (Err.number = -2147024893) or (Err.number = -2147024894) Then
RegExists = False
Else
RegExists = True
End If
End Function
If RegExists ("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\") Then
MsgBox "La valeur existe."
Else
MsgBox "La valeur n'existe pas."
End If
si tu veux voila des codes
modifier valeur registre
Set WshShell = CreateObject("WScript.Shell")
WshShell.RegWrite "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\AntiVirusDisableNotify", "1"
Set WshShell = Nothing
supprimer clé
Const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\default:StdRegProv")
strKeyPath = "SOFTWARE\lol"
oReg.DeleteKey HKEY_LOCAL_MACHINE, strKeyPath
tester l'existence d'une clé
Function RegExists(value)
On Error Resume Next
Set WS = CreateObject("WScript.Shell")
val = WS.RegRead(value)
If (Err.number = -2147024893) or (Err.number = -2147024894) Then
RegExists = False
Else
RegExists = True
End If
End Function
If RegExists ("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\") Then
MsgBox "La valeur existe."
Else
MsgBox "La valeur n'existe pas."
End If