發表文章

目前顯示的是 2月, 2019的文章

ESXI SNMP v3

參考網址:https://docs.vmware.com/tw/VMware-vSphere/6.5/com.vmware.vsphere.monitoring.doc/GUID-2E4B0F2A-11D8-4649-AC6C-99F89CE93026.html #設定引擎ID(十六進制字串長度需介於5~32) esxcli system snmp set --engineid id #設定認證加密方式 esxcli system snmp set --authentication 加密方式(none, SHA1, MD5) #設定隱私加密方式 esxcli system snmp set --privacy 加密方式(none, AES128) #產生驗證、隱私雜湊值 esxcli system snmp hash --auth-hash authsecret --priv-hash privsecret --raw-secret authsecret, privsecret:請自行輸入 範例輸入 esxcli system snmp hash --auth-hash dragonyue --priv-hash dragonyue --raw-secret 範例輸出 Authhash: 52bc8e54a245feefb806750f869900a4251a0028 Privhash: 52bc8e54a245feefb806750f869900a4251a0028 #設定SNMP使用者 esxcli system snmp set --users userid/authhash/privhash/security userid:請自行輸入 authhash, privihash:請用產生出來的雜湊值 security:auth (代表僅驗證), priv (代表驗證和隱私), none (代表無驗證或隱私) #啟用SNMP esxcli system snmp set --enable true #查看SNMP設定資訊 esxcli system snmp get

Windows 10 安裝 APP

APP XML 位置 C:\Program Files\WindowsApps\ #安裝Microsoft Store add-appxpackage -register "C:\Program Files\WindowsApps\APP XML位置(取代這裡)\appxmanifest.xml" -disabledevelopmentmode

Windows 10 移除預裝APP

使用管理員權限開啟Windows PowerShell #移除所有APP Get-AppxPackage -AllUsers | Remove-AppxPackage #移除所有APP(只限User) Get-AppxPackage -User | Remove-AppxPackage #移除某APP #3D Builder get-appxpackage *3dbuilder* | remove-appxpackage #時鐘&鬧鐘 get-appxpackage *alarms* | remove-appxpackage #App Connector get-appxpackage *appconnector* | remove-appxpackage #App Installer get-appxpackage *appinstaller* | remove-appxpackage #日曆、郵件 get-appxpackage *communicationsapps* | remove-appxpackage #計算機 get-appxpackage *calculator* | remove-appxpackage #相機 get-appxpackage *camera* | remove-appxpackage #feedback get-appxpackage *feedback* | remove-appxpackage #Get Office get-appxpackage *officehub* | remove-appxpackage #Get Started or Tips get-appxpackage *getstarted* | remove-appxpackage #Get Skype get-appxpackage *skypeapp* | remove-appxpackage #Groove Music get-appxpackage *zunemusic* | remove-appxpackage #Groove Music、Movies、TV get-appxpackage *zune* | remove-appxpackage #地圖 get-appxpack