由於總公司給我這AD權限不夠,所以登錄檔沒辦法使用ad派送,故想請高手幫忙協助將以下登錄檔數值變更為可執行.bat的執行檔,感謝。
________________________
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Safer\CodeIdentifiers\0\Paths\{07d9a462-2flc-4e48-be4c-c65d30540811}]
"LastModified"=hex(b):d8,10,6d,52,71,00,cb,01
"Description"=""
"SaferFlags"=dword:00000000
"ItemData"="*"*
"ItemData"="*"*
這個看不懂
所以就假設他是一個值是*的字串
<pre class="c" name="code">reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\Safer\CodeIdentifiers\0\Paths\{07d9a462-2flc-4e48-be4c-c65d30540811} /v Description /t REG_SZ /d ""
reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\Safer\CodeIdentifiers\0\Paths\{07d9a462-2flc-4e48-be4c-c65d30540811} /v SaferFlags /t REG_DWORD /d 0x0
reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\Safer\CodeIdentifiers\0\Paths\{07d9a462-2flc-4e48-be4c-c65d30540811} /v LastModified /t REG_BINARY /d D8106D527100CB01
reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\Safer\CodeIdentifiers\0\Paths\{07d9a462-2flc-4e48-be4c-c65d30540811} /v ItemData /t REG_SZ /d *
你的方向似乎找錯了..
你不需要.bat檔,而是需要一個.cmd檔及一個.vbs檔來協同作業..
...
不過你的成功機率不會太高.
因為機碼寫入是要超級使用者權限的。
如果你每次登入時,都確定是Administrator的話,應該可行...
將這些
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Safer\CodeIdentifiers\0\Paths\{07d9a462-2flc-4e48-be4c-c65d30540811}]
"LastModified"=hex(b):d8,10,6d,52,71,00,cb,01
"Description"=""
"SaferFlags"=dword:00000000
"ItemData"="*"*
存成一個文字檔 xxx.reg, 然後執行 regsvr32 xxx.reg
如果你有足夠的權限,你就可以成功的匯入機碼