2019年12月31日 星期二

windows 安裝軟體出現error 2503/2502

原因就是C:\Windows\Temp資料夾NTFS許可權錯誤,將它的使用者許可權改為完全控制就OK了。

解除鎖定工作管理員的方法


解除鎖定工作管理員的方法:
1.
按「開始」>> 「執行」,輸入 regedit 按確定。
2.
到以下位置:(與檔案總管窄開資料夾的操作類似,在每個機碼前的 "+" 上按一下,就可以展開到下一層)
HKCU\Software\Microsoft\Windows\CurrentVersion\ Policies\System
3.
System 之後,注意看右邊窗格裡,在 DisableTaskMgr 上按兩下(double-click), 把數值資料設為 0 1 是啟動封鎖工作管理員,0 是解除封鎖),或者,直接在 DisableTaskMgr 上按滑鼠右鍵選刪除。
4.
關閉 Regedit 程式,測試按 Ctrl + Alt + Del 是否可以叫出工作管理員。(不需要重開機)

或者

直接在下方的工作列按右鍵,工作管理員是否一樣是灰色的呢?(如不行,請試下列方式)

1.開始->執行,輸入 gpedit.msc,按Enter。(開啟群組原則視窗)
2.點選 本機電腦原則\使用者設定\系統管理範本\系統\Ctrl+Alt+Del選項
3.於右邊視窗 移除工作管理員 以滑鼠左鍵點兩下
4.將設定改為 尚未設定(C) 或是 已停用(D),按確定
5.關閉群組原則視窗
6.開始->執行,輸入 gpupdate ,按Enter

2019年12月19日 星期四

linux log?

  • /var/log/secure:記錄登入系統存取資料的檔案,例如 pop3, ssh, telnet, ftp 等都會記錄在此檔案中。

  • /var/log/wtmp:記錄登入者的訊息資料,由於本檔案已經被編碼過,所以必須使用 last 這個指令來取出檔案的內容。

  • /var/log/messages:這個檔案相當的重要,幾乎系統發生的錯誤訊息(或者是重要的資訊)都會記錄在這個檔案中。

  • /var/log/boot.log:記錄開機或者是一些服務啟動的時候,所顯示的啟動或關閉訊息。

  • /var/log/maillog 或 /var/log/mail/*:紀錄郵件存取或往來( sendmail 與 pop3 )的使用者記錄。

  • /var/log/cron:這個是用來記錄 crontab 這個例行性服務的內容的!

  • /var/log/httpd, /var/log/news, /var/log/mysqld.log, /var/log/samba, /var/log/procmail.log: 分別是幾個不同的網路服務的記錄檔啦!

2019年9月24日 星期二

windows update出現錯誤代碼80092004

嘗試看看重設更新相關資訊,然後掃瞄系統,確認看看能否恢復正常

sfc /scannow

重新設定Windows Update相關服務

1. 移除 C:\Windows\System32\CATROOT2 資料夾,其中 C:\Windows 是 Windows 安裝的路徑。如果要執行這項操作:

    01.點選 [開始] > [控制台] > [系統管理工具] > [服務] > 尋找下列服務並點選[Auto Update]或[Windows Update] 及 [Background Intelligent Transfer Service] 及[Cryptographic Services],然候點選右鍵選[停止]。

    02.找出C:\Windows\Software Distribution 資料夾,點選[Software Distribution]按右鍵,選[重新命名]為[Software Distribution Old]

    03.找出 C:\Windows\System32\Catroot2 資料夾,點選[Catroot2]按右鍵,選[重新命名]為[Catroot2 Old]。

2. 請確認您的電腦右下角的時間及日期是否正確

3. 再重新執行Windows Update動作


清除TEMP暫存檔案
另外,在畫面左下角點選滑鼠右鍵,找到執行,輸入%temp%,將此資料夾內的檔案都刪除,若無法刪除的直接略過即可

2019年9月10日 星期二

linux計算目前目錄檔案linux計算目前目錄檔案數?

find ./ -type f |wc -l


計算資料夾下某副檔名的檔案數



find ./ -type f -name *.txt | wc -l

察看每個目錄佔用容量的大小

du這個指令:
-s, --summarize 只顯示總計
-c, --total 增列一行 "總計"

-h, --human-readable 以 K, M, G 為計量單位

du -sch /var/*

2019年9月5日 星期四

Windows Update 更新出現 8024402F 錯誤?

1.命令提示字元右鍵-->以系統管理員身分執行,下sfc  /scannow,重開機後執行windows update,無效
2.[開始]>[執行]>鍵入cmd”, [命名提示字元]鍵入netsh winsock reset”, 並執行成功後重新開機執行windows update,有效。

2019年8月27日 星期二

遠端桌面可以使用空白密碼登入

如果測試機是無密碼登入,請在測試機電腦設定

1.
按一下 [開始],並指向 [執行],再輸入 gpedit.msc,然後按 [確定],以啟動 [群組原則編輯器]。
2.
依序開啟 [電腦設定]、[Windows 設定]、[安全性設定]、[本機原則]、[安全性選項] 及 [帳戶:限制使用空白密碼的本機帳戶僅能登入到主控台]。
3.
按兩下 [限制使用空白密碼的本機帳戶僅能登入到主控台]
4.
按一下 [已停用],再按 [確定]
5.
結束 [群組原則編輯器]。
注意:此原則預設為開啟 (啟用)。

centos 7 修改主機名稱?

hostnamectl set-hostname xxxx
reboot 即可

2019年8月22日 星期四

centos 7 忘記root密碼?

1.重開機3秒內按向下鍵,停留在開機介面。
2.底下有寫按e鍵為edit,就按e鍵。
3.將游標移到linux16開頭,移到ro這裡,改成 rw init=/sysroot/bin/bash 然後同時按ctrl和x 這2鍵,進入emergency模式。
4.執行chroot /sysroot/,再打passwd去變更root密碼,要打2次,這時會出現亂碼,因為為中文字體,如不習慣,在執行chroot /sysroot/前先行LANG=en就可以了。
5.最後執行touch /.autorelabel,這步驟讓SElinux生效。
6.按cerl+d這2鍵,再執行reboot重新開機即可。

2019年7月6日 星期六

修改電腦名稱指令

@echo on
wmic ComputerSystem where Name="舊名稱(原本)" call Rename Name="新名稱"

@echo on
wmic ComputerSystem where Name="%COMPUTERNAME%" call Rename Name="新名稱"

2019年6月6日 星期四

安裝出現2503、2502問題?

安裝office 2003出現2503、2502錯誤,原因就是C:\Windows\Temp文件夾NTFS權限錯誤。只要將現有帳號加入授予完全控制即可。
參考:https://kknews.cc/zh-tw/tech/qenrey.html

2019年4月24日 星期三

做sysprep後,如何刪除之前的使用者?

1.runsysprep後,通常系統會要求再設置一個user account,所以整個系統會有兩個 user account,這對於工廠端人員是不想預見的,誰不想系統大量佈署後只有一個 account,直接就可以讓客戶直接使用呢?所以我在這要教授如何讓系統跑完sysprep後只 會產生一個user account

2.設定password product key、安全設定、時間及日期和網路,設定完之後會產生使用者及使用者目錄。

3.在命令提示列裡輸入:sysprep /audit /quiet /reboot

4.重開機後進入稽核模式,此時是以administrator的帳號登入,此時我們要砍掉我們剛剛建立的使用者帳號。

5.一樣在命令提示列裡執行:sysprep /oobe /generalize /reboot /unattend:filename.xml


此時的再次執行sysprep才是真正的要做封裝動作,所以reboot也可以改成shutdown如果有應答文件要記得將應答文件跟sysprep.exe放在一起,這樣應答文件才有作用。此時 開機完之後就會以一個新的user account進入到系統了。

2019年4月20日 星期六

啟用win10 1803以上的終極效能

使用系統管理員身分,在命令列上執行
c:\>powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61
※完成後會冒出一個提示,"終極效能"表示開啟完成
在電源管理那找到"終極效能"模式

2019年4月17日 星期三

Can not Windows update?

  1. Click Start, and in the Search box on the start menu, type CMD, then press Ctrl+Shift+Enter (this will get you an elevation prompt for an Administrator command prompt)
  2. At the command prompt, type net stop wuauserv, then press Enter
  3. Type rmdir /s %windir%\softwaredistribution\DataStore, then press Enter. Type Y to acknowledge the command.
  4. Click Start, and in the Search box on the start menu, type regedit and press Enter
  5. Go to HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ WindowsUpdate. Right-click on WindowsUpdate in the tree and choose Delete (confirm deletion). Close Regedit.
  6. At the command prompt, type net start wuauserv, press Enter and close the command prompt.
  7. Use the Windows Update again to install updates.
參考:https://www.windowsbbs.com/threads/can-not-download-updates.97594/

2019年4月8日 星期一

ESXi 5.5~6.5 指令

1.list the power on VMs:
esxcli vm process list  --重要的是找到World ID
若用esxcli vm process list | grep <guest vm name>則只會列出名稱與config file位置

2.turn off the VM:
esxcli vm process kill --type=xxxx --world-id=yyyyy
例如:esxcli vm process kill --type=soft --world-id=60418

for -type=xxxx use: soft, hard or force
for world-id=yyyy(VM ID) use the World ID listed in the command above
(eg. World ID 39731 for the example VM "Cold")
Some information about the three possible shutdown methods:

soft = prefer this if you want to shut down "softly"
hard = equal to an immediate shutdown
force = hard kill of the VM

3.trun on the VM:
list the VM:
vim-cmd vmsvc/getallvms

power on the VM:
vim-cmd vmsvc/power.on <vmid>

Check the power state of the VM
vim-cmd vmsvc/power.getstate <vmid>

check VM  status:
esxcli vm process list

4.reboot the VM:
vim-cmd vmsvc/power.restart (reboot)<vm-id>

5.shutdown the VM:
vim-cmd vmsvc/power.shutdown <vm-id>

2019年4月5日 星期五

vmware esxi6.5u1 update 6.5u2?

先下載update6.5u2及之後的Patches
update-from-esxi6.5-6.5_update02.zip
ESXi650-201903001.zip
1.請開啟瀏覽器後輸入 http://ESXi Server IP or FQDN/ui 登入VMware ESXi 6.5主控台
登入帳號:root
登入密碼:系統安裝時,所設定輸入密碼。

2.先準備上載更新檔案
點選:Navigator 導覽器➤Storage 儲存區➤Datastore browser 資料存放瀏覽器
(1).點選:Create directory 建立目錄
(2).命名目錄名稱,例如:Patches
(3).點選:Upload 上傳
(4).選擇已下載更新檔案:update-from-esxi6.5-6.5_update02.zip 上傳ESXi6.5 U2更新檔案

3.選擇:動作➤進入維護模式 Enter Maintenance Mode

4.確認維護模式變更,請點選:是

5.VMware ESXi 6.5 Host主控台可以看到系統已進入維護模式 Enter Maintenance Mode

6.選擇:動作➤服務➤啟用Secure Shell (SSH)服務
VMware ESXi 6.5 Host主控台可以看到系統已進入維護模式 Enter Maintenance Mode
※透過 PuTTY登入ESXi Host端 (需先啟用SSH)服務),執行進入「維護模式」指令:
#vim-cmd /hostsvc/maintenance_mode_enter

7.執行PuTTY登入ESXi 6.5 Host 主機(使用root帳號)
輸入更新指令與存放更新檔案儲存區位置,輸入完成請按下Enter進行系統更新:先更新到6.5U2(在跟目錄下以下指令)
esxcli software vib install -d /vmfs/volumes/vmstorage/Patches/update-from-esxi6.5-6.5_update02.zip
稍後一段時間,即可完成如下圖 ESXi 6.5 Update 2 Patches系統更新完成版本訊息

8.更新完成後,請將ESXi 6.5 Host 退出「維護模式」及「重新開機」。
也可執行PuTTY登入ESXi Host端,執行指令退出「維護模式、重新開機」:
# vim-cmd /hostsvc/maintenance_mode_exit
# reboot

9.再更新6.5U2之後的Patches,步驟與上面相同,只是指令為(在跟目錄下以下指令)
esxcli software vib install -d /vmfs/volumes/vmstorage/Patches/ESXi650-201903001.zip

參考:http://maxlabvm.blogspot.com/2018/05/how-to-install-latest-esxi-65-update-2.html

2019年3月28日 星期四

esxi 無法將 VM 匯出 ovf?

匯出ovf時出現失敗--網路錯誤或失敗--錯誤憑證,後來找到http://itworkertony.blogspot.com/2018/10/esxi-vm-ovf.html
原來是瀏覽器的問題,用chrome會出問題,換firefox就沒問題了。

2019年3月27日 星期三

vm converter 出現error:1603,還有無法安裝vm tools

今天converter出現error 1603
進去要converter 的主機看converter服務沒起來,把它啟動就可以了。
無法安裝vm tools原因是它沒有cd-rom,加上後就可以了

2019年3月26日 星期二

linux install vm tools

1.開啟vSphere Client>>開啟Console>>選VM>>Guest>>Install>>Upgrade VMware Tools
2.copy VMWare Tools 到 tmp
#cp /media/VMware Tools/VMwareTools-xxx.tar.gz /tmp
3.開始安裝
#cd /tmp
#tar zxvf VMwareTools-xxx.tar.gz
#cd vmware-tools-distrib
#./vmware-install.pl

2019年3月25日 星期一

sql server 2008定序設錯需重建資料庫?

1.將SQL Server服務停止
2.進入C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Release
3.執行Setup.exe /QUIET /ACTION=REBUILDDATABASE /INSTANCENAME=MSSQLSERVER /SAPWD=xxxxxxxx /SQLSYSADMINACCOUNTS=Administrator /SQLCOLLATION=Chinese_Taiwan_Stroke_CI_AS
4.重新啟動SQL Server服務
5.之前建立的資料庫會遺失,可利用附加方式救回