跳到主要內容

發表文章

目前顯示的是有「Microsoft」標籤的文章

微軟會在 2021 年再推可一次性購買永久授權的 Office 套件

在早些時候一篇介紹新版 Exchange Server 的部落格文章中,微軟出人意料地透露「將會在 2021 年下半年再推一版可一次性購買永久授權的全新 Office 套件」。這款新軟體已確定會有 Windows 和 macOS 的版本,但諸如價格、上線時間之類 from Pocket https://ift.tt/32WBrM0 via IFTTT

微軟新推出 Office app,要成為你工作的開端

微軟的 Office 365 是個雲端和電腦本機都能使用的文檔處理產品,但微軟發現原來有超過 40% 的使用者都是透過 Office. from Pocket https://ift.tt/2BxuB0R via IFTTT

Microsoft System Powershell

$compObject = get-wmiobject -query "select * from SMS_R_SYSTEM WHERE Name='[computername]'" -computername [sccm-server] -namespace "ROOT\SMS\site_[yoursite]" $compObject.psbase.delete() Remove-DisabledMonitoringObject Remove-SCOMDisabledClassInstance # To find out what options are available to your output of the list of objects in the group use Get-Member (GM) cmdlet Get-SCOMGroup -DisplayName "UR Computer Group" | Get-SCOMClassInstance | GM # after looking at the GM output we decide that DisplayName will work best Get-SCOMGroup -DisplayName "UR Computer Group" | Get-SCOMClassInstance | sort DisplayName |FT DisplayName For UIGeneratedMonitor: Get-SCOMMonitor | where {$_.name -eq "UIGeneratedMonitorGUID#"} | select DisplayName For UIGeneratedRule: Get-SCOMRule | where {$_.name -eq "MomUIGeneratedRuleGUID#"} | select DisplayName Create SCOM 2012 Subscribers using PowerShell Add-SCOMNotificationSubscr...

在system volume information出現Volume Shadow大容量檔案,修改Shadow Copy存放位置時出現錯誤訊息: 0x8004231d

假設:快照來源為O碟,快照目的地為D碟 請先檢查快照有沒有停用 列出所有快照檔案 vssadmin list shadowstorage Resize快照檔案(如不做此動作,會出現0x8004231d錯誤訊息) vssadmin resize shadowstorage /for=O: /on=D: /maxsize=320mb 刪除快照設定 vssadmin delete shadowstorage /for=O: /on=D: