WIN7操作平台獲取管理員許可權批處理

2021-09-06 10:53:39 字數 1298 閱讀 1922

在win7操作平台開啟某些檔案,如果需要管理員許可權才能開啟。通過下面的操作就可以獲取管理員許可權

建立批處理register檔案。檔案內容為,檔案字尾名為.reg。然後雙擊該檔案。開啟需要訪問的檔案,如果需要管理員許可權,則選中該檔案,單擊滑鼠右鍵,選擇管理員獲取所有許可權,則cmd會彈出,然後會發現cmd在執行命令,這個不用擔心,是在獲取訪問檔案的許可權。稍微等待一下,就可以開啟你想開啟的檔案了。下面的命令很有用的。

windows registry editor version 5.00

[hkey_classes_root\*\shell\runas]

@="管理員取得所有權"

"noworkingdirectory"=""

[hkey_classes_root\*\shell\runas\command]

@="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:f"

"isolatedcommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:f"

[hkey_classes_root\exefile\shell\runas2]

@="管理員取得所有權"

"noworkingdirectory"=""

[hkey_classes_root\exefile\shell\runas2\command]

@="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:f"

"isolatedcommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:f"

[hkey_classes_root\directory\shell\runas]

@="管理員取得所有權"

"noworkingdirectory"=""

[hkey_classes_root\directory\shell\runas\command]

@="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:f /t"

"isolatedcommand"="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:f /t"

win7 獲得管理員許可權

win7獲取資料夾的管理員許可權 乙個登錄檔匯入檔案 方法 開個記事本 然後複製如下冒號以後的東西過去,然後儲存為.reg檔案 就ok 了 在雙擊它 再匯入登錄檔 ok了 如下 windows registry editor version 5.00 hkey classes root shell ...

給win7右鍵中新增「獲取管理員許可權」

win7中有可能誤操作導致某些檔案目錄需要獲得管理員許可權才能刪除或者是更改,因此需要獲得管理員許可權。但是剛裝的系統中,右鍵中是沒有 獲取管理員許可權 的選單項的,因此需要手動新增 通過新建乙個 獲取管理員許可權.reg 的檔案,用編輯器開啟後複製進去下面的內容,儲存雙擊新增到登錄檔中即可 win...

VC,在win7下讓程式獲取管理員許可權

注 此檔案只要副檔名是.manifest檔名可以任意。檔案內容的name屬性值也可以為任意。2.把此檔案 import 到資源檔案中,資源型別為24,資源id為1,注 經測試資源型別必須為24,資源id也必須為1,更改資源id直接編輯rc檔案就ok了 3.重新編輯即可,在windows7下該程式圖示...