發表文章

目前顯示的是 9月, 2025的文章

利用指令開啟Windows資源回收桶

圖片
1.  使用Windows + R 進入執行視窗 2.  輸入指令shell:RecycleBinFolder 按 enter 3. 出現explorer畫面並於資源回收桶的路徑上 或 在桌面桌布位置按右鍵=>選擇個人化=>布景主題=>桌面圖示設定 參考 https://support.microsoft.com/zh-tw/windows/%E5%9C%A8-windows-%E4%B8%AD%E5%B0%8B%E6%89%BE%E5%9B%9E%E6%94%B6%E7%AB%99-885cf298-0f98-a548-9427-a1248fce4315

How to reset password of account kali on Kali Linux

1. Look for line of "Linux ..." in GRUB menu, change message ro to rw 2. Append "init=/usr/bin/bash " and "system.unit=multi-user.target" at the end of line of "Linux..." 3. Press Ctrl + x to reboot  # system will reboot to root mode 4. command "passwd kali"  # change kali password (default account kali) 5. command  "exec /usr/sbin/init"  # go to init for testing 6. reboot kali

在Windows利用CLI模式移除程式

圖片
1.  利用管理員身分開啟 cmd.exe終端機 2.  wmic product get name  #輸入指令 3.wmic product where "name like '%intel%'" get name,version  #輸入指令 4.  wmic product where "name like 'Intel(R) Computing Improvement Program'" call uninstall  /nointeractive  #輸入指令 @powershell 1. 用管理員開啟powershell,輸入 Get-AppxPackage -all *intel(R)* | Remove-AppPackage -AllUsers 2. 移除