主頁 > 知識庫 > Windows8系統(tǒng)取得超級管理員權(quán)限的方法

Windows8系統(tǒng)取得超級管理員權(quán)限的方法

熱門標(biāo)簽:深圳外呼系統(tǒng)線路哪家公司做得好 南京智能語音電銷機器人功能 北京市400電話辦理 如何撤銷百度地圖標(biāo)注信息注冊 湘潭電銷外呼系統(tǒng)軟件公司 怎么在地圖標(biāo)注地址 電話機器人相關(guān)新聞 南通手機外呼系統(tǒng)供應(yīng)商 安康電銷外呼系統(tǒng)

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

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

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

Win8取得超級管理員權(quán)限

方法很簡單:

1.新建一個記事本將下面的代碼Copy進(jìn)去保存,記事本名字無所謂,記住將擴展名改為.reg就行了。
2.建好之后,雙擊這個reg文件(注冊表文件)導(dǎo)入注冊表,導(dǎo)入前會有提示讓你選擇,點是就行了。
3.導(dǎo)入進(jìn)去之后,右擊你要取得權(quán)限的文件夾,鼠標(biāo)右鍵菜單中選擇選擇管理員權(quán)限就行了。
4.為了安全考慮,對一個文件操作完成之后,應(yīng)當(dāng)恢復(fù)成默認(rèn)權(quán)限,此時在右鍵菜單中選擇恢復(fù)原始權(quán)限就行了。

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


復(fù)制代碼
代碼如下:

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)限:


復(fù)制代碼
代碼如下:

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)簽:榆林 怒江 金華 清遠(yuǎn) 湖北 鹽城 朔州 棗莊

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