辦公軟件是指可以進(jìn)行文字處理、表格制作、幻燈片制作、圖形圖像處理、簡單數(shù)據(jù)庫的處理等方面工作的軟件。目前辦公軟件朝著操作簡單化,功能細(xì)化等方向發(fā)展。辦公軟件的應(yīng)用范圍很廣,大到社會統(tǒng)計(jì),小到會議記錄,數(shù)字化的辦公,離不開辦公軟件的鼎力協(xié)助。另外,政府用的電子政務(wù),稅務(wù)用的稅務(wù)系統(tǒng),企業(yè)用的協(xié)同辦公軟件,這些都屬于辦公軟件。 卸載軟件時(shí)報(bào)錯(cuò):沒有足夠的權(quán)限卸載μTorrent。請與系統(tǒng)管理員聯(lián)系。相信不少的網(wǎng)友都遇到過這樣的提示,最終無法卸載自己不想用的軟件,下面就將走過的彎路,用到過的解決方法思路分享給大家,希望能幫到大家解決該問題。

方法步驟:
方法一:
在你想卸載的軟件桌面圖標(biāo)上:單擊鼠標(biāo)右鍵--打開文件位置,打開該程序在電腦上的安裝目錄,找到:Uninst.exe 或者
Uninstall.exe 程序,單擊鼠標(biāo)右鍵--以管理員的身份運(yùn)行,根據(jù)提示執(zhí)行,即可卸載,以該名稱命名的文件一般都是安裝程序的卸載文件,大部分軟件都是有的,當(dāng)然也不排除沒有的。

方法二:
借助360安全衛(wèi)士……等殺毒軟件上自帶的:軟件管家--卸載功能,找到對應(yīng)的軟件執(zhí)行一鍵卸載功能。
方法三:
某些軟件可能你下載的時(shí)候使用的是綠化版的,但是文件目錄下提供了一個(gè)批處理的卸載或清除安裝殘留的文件,執(zhí)行即可卸載,IT備忘錄小編使用的μTorrent BT下載軟件就是這個(gè)問題引起的。參考以下代碼,本代碼只適用于μTorrent的卸載。
- @ECHO OFF&(PUSHD "%~DP0")&(REG QUERY "HKU\S-1-5-19">NUL 2>&1)||(
- powershell -Command "Start-Process '%~sdpnx0' -Verb RunAs"&&EXIT)
-
- taskkill /f /im utorrent* >NUL 2>NUL
-
- rd/s/q "%AppData%\uTorrent"2>NUL
- rd/s/q "%LocalAppData%\BitTorrentHelper"2>NUL
- rd/s/q "%UserProfile%\AppData\LocalLow\uTorrent"2>NUL
- rd/s/q "%AllUsersProfile%\Application Data\uTorrent"2>NUL
- rd/s/q "%UserProfile%\Local Settings\Application Data\uTorrent"2>NUL
-
- reg delete "HKCU\Software\BitTorrentPersist" /f >NUL 2>NUL
- reg delete "HKCU\SOFTWARE\BitTorrent\uTorrent" /f >NUL 2>NUL
- reg delete "HKCU\SOFTWARE\Classes\.btapp" /f >NUL 2>NUL
- reg delete "HKCU\SOFTWARE\Classes\.btinstall" /f >NUL 2>NUL
- reg delete "HKCU\SOFTWARE\Classes\.btkey" /f >NUL 2>NUL
- reg delete "HKCU\SOFTWARE\Classes\.btsearch" /f >NUL 2>NUL
- reg delete "HKCU\SOFTWARE\Classes\.btskin" /f >NUL 2>NUL
- reg delete "HKCU\SOFTWARE\Classes\Applications\uTorrent.exe" /f >NUL 2>NUL
- reg delete "HKCU\SOFTWARE\Classes\MIME" /f >NUL 2>NUL
- reg delete "HKCU\SOFTWARE\Classes\uTorrent" /f >NUL 2>NUL
- reg delete "HKCU\SOFTWARE\Google\Chrome\NativeMessagingHosts\com.utorrent.native" /f >NUL 2>NUL
- reg delete "HKLM\SOFTWARE\Classes\MIME\Database\Content Type\application/x-bittorrent-app" /f >NUL 2>NUL
- reg delete "HKLM\SOFTWARE\Classes\MIME\Database\Content Type\application/x-bittorrent-appinst" /f >NUL 2>NUL
- reg delete "HKLM\SOFTWARE\Classes\MIME\Database\Content Type\application/x-bittorrent-key" /f >NUL 2>NUL
- reg delete "HKLM\SOFTWARE\Classes\MIME\Database\Content Type\application/x-bittorrent-skin" /f >NUL 2>NUL
- reg delete "HKLM\SOFTWARE\Microsoft\Tracing\GenericSetup_RASAPI32" /f >NUL 2>NUL
- reg delete "HKLM\SOFTWARE\Microsoft\Tracing\GenericSetup_RASMANCS" /f >NUL 2>NUL
- reg delete "HKLM\SYSTEM\CurrentControlSet\Services\WCAssistantService" /f >NUL 2>NUL
- reg delete "HKLM\SOFTWARE\Microsoft\Tracing\WebCompanionInstaller_RASAPI32" /f >NUL 2>NUL
- reg delete "HKLM\SOFTWARE\Microsoft\Tracing\WebCompanionInstaller_RASMANCS" /f >NUL 2>NUL
- reg delete "HKLM\SOFTWARE\Microsoft\Tracing\GenericSetup_RASAPI32" /f /reg:32 >NUL 2>NUL
- reg delete "HKLM\SOFTWARE\Microsoft\Tracing\GenericSetup_RASMANCS" /f /reg:32 >NUL 2>NUL
- reg delete "HKLM\SOFTWARE\Microsoft\Tracing\WebCompanionInstaller_RASAPI32" /reg:32 /f >NUL 2>NUL
- reg delete "HKLM\SOFTWARE\Microsoft\Tracing\WebCompanionInstaller_RASMANCS" /f /reg:32 >NUL 2>NUL
-
- reg delete "HKCU\SOFTWARE\Microsoft\windows\CurrentVersion\Run" /f /v "uTorrent" >NUL 2>NUL
- reg delete "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\uTorrent" /f >NUL 2>NUL
- for /f "delims=" %%a in ('wmic userAccount where "Name='%userName%'" get SID /value') do call set "%%a" >NUL
- reg delete "HKU\%SID%\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\uTorrent" /f >NUL 2>NUL
- reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{5884684e-2b00-4f2d-8778-a930327412fa}" /f >NUL 2>NUL
- reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{5884684e-2b00-4f2d-8778-a930327412fa}" /f /reg:32 >NUL 2>NUL
-
- ECHO.&ECHO 移除完成!
- ECHO.&ECHO www.itmemo.cn
- TIMEOUT /t 2 >NUL&EXIT
方法四:
1、在 鍵盤 上按下【Win+R】組合鍵快速打開:運(yùn)行,輸入: gpedit.msc 敲回車鍵打開:組策略。
2、在組策略左側(cè)依次展開: 計(jì)算機(jī)配置→ windows 設(shè)置→安全設(shè)置→本地策略→安全選項(xiàng)。
3、在右側(cè)找到【用戶賬戶控制:以 管理員 批準(zhǔn)模式運(yùn)行所有管理員】,雙擊打開,選擇【已禁用】點(diǎn)擊確定。
Office辦公軟件是辦公的第一選擇,這個(gè)地球人都知道。
|