Overblog
Suivre ce blog Administration + Créer mon blog

Comment deployer windows 8 en VM

Publié le par damcuvelier

Guide: en français avec virtual box: http://korben.info/installer-windows-8-sur-virtualbox-meme-quand-ca-ne-fonctionne-pas.html in english; http://lifehacker.com/5841065/how-do-i-install-windows-8-in-a-virtual-machine it’s ok:

Lire la suite

vbs: reg: how to use regdelete,regwrite,regread

Publié le par damcuvelier

Modify the Windows Vista Registry with VBScript Before we create a VBScript to modify the Vista registry, it is wise to at least consider the alternatives. For example, would a group policy be a better way of achieving our goal? Is it possible to achieve...

Lire la suite

cmd: 7Zip

Publié le par damcuvelier

"C:\Program Files\7-Zip\7z" u -r C:\temp\test2.zip c:\mon_répertoire\*.*

Lire la suite

vbs: AD: List the General Properties of a Group

Publié le par damcuvelier

Const ADS_GROUP_TYPE_GLOBAL_GROUP = &h2 Const ADS_GROUP_TYPE_LOCAL_GROUP = &h4 Const ADS_GROUP_TYPE_UNIVERSAL_GROUP = &h8 Const ADS_GROUP_TYPE_SECURITY_ENABLED = &h80000000 Set objGroup = GetObject _ ("LDAP://cn=Scientists,ou=R&D,dc=NA,dc=fabrikam,dc=com")...

Lire la suite

VBS: REGEDIT: Get valuename for valuevalue

Publié le par damcuvelier

dim strComputer : strComputer = "." dim oReg dim value,valeur '// Registry variables: const HKEY_LOCAL_MACHINE = &H80000002 dim strKeyPath : strKeyPath = "" Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer &...

Lire la suite

vbs: Regedit : rename strKeyPath => strKeyPath & ".old"

Publié le par damcuvelier

rename = copy/rewrite/delete 'save of key : key.old oReg.createKey HKEY_LOCAL_MACHINE, strKeyPath & ".old" 'rewrite all value into new key oReg.EnumValues HKEY_LOCAL_MACHINE, strKeyPath, arrayValueNames, arrayValueTypes For i=0 To UBound(arrayValueNames)...

Lire la suite

VBS : XML WEBSERVICE: SOAP REQUEST

Publié le par damcuvelier

'usage: soap_request.vbs /usr: Dim colNamedArguments : Set colNamedArguments = WScript.Arguments.Named Const ForReading = 1, ForWriting = 2, ForAppending = 8 VbsPath = Left(WScript.ScriptFullName,InStrRev(WScript.ScriptFullName,"\")) UsrName...

Lire la suite

<< < 10 20 30 31 32 33 34 35 36 37 38 39 40 > >>