主頁 > 知識庫 > Win8取得超級管理員權(quán)限為鼠標(biāo)右鍵添加取得管理員權(quán)限選項(xiàng)

Win8取得超級管理員權(quán)限為鼠標(biāo)右鍵添加取得管理員權(quán)限選項(xiàng)

熱門標(biāo)簽:品質(zhì)好的外呼系統(tǒng) 地圖標(biāo)注要收費(fèi) 濱州電銷機(jī)器人批發(fā) 長安地圖標(biāo)注app 百度地圖標(biāo)注定位中心 拉薩便宜外呼系統(tǒng)平臺 浙江曉芯電話機(jī)器人 地圖標(biāo)注招募代理 58同城地圖標(biāo)注

使用Win8在找開系統(tǒng)文件夾是經(jīng)常提示:無法訪問……,拒絕訪問。就是沒有超級管理員權(quán)限所致,取得Win8超級管理員權(quán)限很容易,導(dǎo)入一個注冊表文件就可以實(shí)現(xiàn),并且操作簡單。

不管是使用Win8還是Win7,在打開C盤的一些文件夾時,經(jīng)常會遇到無法訪問的情況,以致于想刪除已經(jīng)確認(rèn)沒有用的文件時刪除不了。Win7下很好辦,各種工具皆可實(shí)現(xiàn)在右鍵菜單添加取得管理員權(quán)限按鈕?,F(xiàn)在主要介紹Win8下如何為鼠標(biāo)右鍵菜單添加取得管理員權(quán)限選項(xiàng)。

有些同學(xué)會問,我的賬戶已經(jīng)是管理員了,為什么還會權(quán)限不足呀。簡單點(diǎn)說來,在Windows Administrators權(quán)限之上還有一項(xiàng)權(quán)限,具體叫啥我現(xiàn)在也記不清了,它才是最高管理員。

方法很簡單

新建一個記事本將下面的代碼Copy進(jìn)去保存,記事本名字無所謂,記住將擴(kuò)展名改為.reg就行了。

建好之后,雙擊這個reg文件(注冊表文件)導(dǎo)入注冊表,導(dǎo)入前會有提示讓你選擇,點(diǎn)是就行了。

導(dǎo)入進(jìn)去之后,右擊你要取得權(quán)限的文件夾,鼠標(biāo)右鍵菜單中選擇選擇管理員權(quán)限就行了。

為了安全考慮,對一個文件操作完成之后,應(yīng)當(dāng)恢復(fù)成默認(rèn)權(quán)限,此時在右鍵菜單中選擇恢復(fù)原始權(quán)限就行了。

1、取得管理員權(quán)限

Windows Registry Editor Version 5.00

;取得文件修改權(quán)限  

[HKEY_CLASSES_ROOT\*\shell\runas]  

@="管理員權(quán)限"

"Icon"="C:\\Windows\\System32\\imageres.dll,102"

"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]  

@="管理員權(quán)限"

"Icon"="C:\\Windows\\System32\\imageres.dll,102"

"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]  

@="管理員權(quán)限"

"Icon"="C:\\Windows\\System32\\imageres.dll,102"

"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"

2、恢復(fù)原始權(quán)限

Windows Registry Editor Version 5.00

;恢復(fù)原始權(quán)限  

[HKEY_CLASSES_ROOT\*\shell\runas-]  

@="恢復(fù)原始權(quán)限"

"Icon"="C:\\Windows\\System32\\imageres.dll,101"

"NoWorkingDirectory"=""

; takeown /f \&;%1\&;

[HKEY_CLASSES_ROOT\*\shell\runas-\command]  

@="cmd.exe /c takeown /f \&;%1\&; icacls \&;%1\&; /reset cacls \&;%1\&; /e /r \&;%%USERNAME%%\&;"

"IsolatedCommand"="cmd.exe /c takeown /f \&;%1\&; icacls \&;%1\&; /reset cacls \&;%1\&; /e /r \&;%%USERNAME%%\&;"

[HKEY_CLASSES_ROOT\exefile\shell\runas2-]  

@="恢復(fù)原始權(quán)限"

"Icon"="C:\\Windows\\System32\\imageres.dll,101"

"NoWorkingDirectory"=""

[HKEY_CLASSES_ROOT\exefile\shell\runas2-\command]  

@="cmd.exe /c takeown /f \&;%1\&; icacls \&;%1\&; /reset cacls \&;%1\&; /e /r \&;%%USERNAME%%\&;"

"IsolatedCommand"="cmd.exe /c takeown /f \&;%1\&; icacls \&;%1\&; /reset cacls \&;%1\&; /e /r \&;%%USERNAME%%\&;"

[HKEY_CLASSES_ROOT\Directory\shell\runas-]  

@="恢復(fù)原始權(quán)限"

"Icon"="C:\\Windows\\System32\\imageres.dll,101"

"NoWorkingDirectory"=""

[HKEY_CLASSES_ROOT\Directory\shell\runas-\command]  

@="cmd.exe /c takeown /f \&;%1\&; /r /d y icacls \&;%1\&; /reset cacls \&;%1\&; /e /r \&;%%USERNAME%%\&;"

"IsolatedCommand"="cmd.exe /c takeown /f \&;%1\&; /r /d y icacls \&;%1\&; /reset cacls \&;%1\&; /e /r \&;%%USERNAME%%\&;"

標(biāo)簽:青島 銅川 日照 公主嶺 林芝 滁州 延安 齊齊哈爾

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Win8取得超級管理員權(quán)限為鼠標(biāo)右鍵添加取得管理員權(quán)限選項(xiàng)》,本文關(guān)鍵詞  Win8,取得,超級,管理員,權(quán)限,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Win8取得超級管理員權(quán)限為鼠標(biāo)右鍵添加取得管理員權(quán)限選項(xiàng)》相關(guān)的同類信息!
  • 本頁收集關(guān)于Win8取得超級管理員權(quán)限為鼠標(biāo)右鍵添加取得管理員權(quán)限選項(xiàng)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章