国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > Windows > 正文

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

2019-11-28 02:17:52
字體:
供稿:網(wǎng)友

使用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)限按鈕。現(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)限就行了。

Win8取得超級管理員權(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%%/""

發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 金山区| 新兴县| 普宁市| 聊城市| 盖州市| 会同县| 马龙县| 隆昌县| 博湖县| 武汉市| 皮山县| 大庆市| 宿州市| 丹东市| 新安县| 凌云县| 彩票| 攀枝花市| 吉木乃县| 遂溪县| 襄垣县| 汽车| 资溪县| 桃园县| 弋阳县| 平谷区| 清新县| 图木舒克市| 玛曲县| 安图县| 搜索| 黔南| 郑州市| 商水县| 岑溪市| 和龙市| 容城县| 永修县| 元谋县| 土默特左旗| 黎城县|