2023-05-10發表Windows2 分鐘讀完 (大約343個字)(Windows)如何開啟XPS檔案及安裝XPS檢視器遇到使用者反映XPS檔案無法開啟,需安裝「XPS檢視器」。在Windows 10/11下,如何安裝「XPS檢視器」,在這裡記錄一下兩個方法。方法一:從「設定」中的「應用程式」安裝繼續閱讀
2022-07-27發表PowerShell1 分鐘讀完 (大約131個字)(PowerShell)New-PSDriveSyntax1234567891011New-PSDrive [-Name] <String> [-PSProvider] <String> [-Root] <String> [-Description <String>] [-Scope <String>] [-Persist] [-Credential <PSCredential>] [-WhatIf] [-Confirm] [<CommonParameters>]繼續閱讀
2022-07-27發表PowerShell3 分鐘讀完 (大約473個字)(PowerShell)檔案與目錄操作(建立、複製、搬移、刪除)檢查檔案/目錄是否存在使用Test-Path指令檢查,存在傳回True,不存在傳回False1234# 檢查檔案是否存在Test-Path -Path "D:\Logfiles\xxx.log"# 檢查目錄是否存在Test-Path -Path "D:\Logfiles"繼續閱讀
2022-07-24發表PowerShell2 分鐘讀完 (大約290個字)(PowerShell)常見輸出訊息的方法Write-Host直接輸出到終端機畫面1Write-Host "Hello World"繼續閱讀
2022-07-22發表PowerShell幾秒讀完 (大約87個字)(PowerShell)檢查/設定TrustedHosts取得目前TrustedHosts名單1Get-Item WSMan:\localhost\Client\TrustedHosts設定TrustedHosts繼續閱讀
2022-07-15發表PowerShell3 分鐘讀完 (大約403個字)(PowerShell)壓縮/解壓縮壓縮/解壓縮指令說明Compress-Archive壓縮Expand-Archive解壓縮2個指令的常用參數相似,見以下說明。繼續閱讀
2022-07-15發表PowerShell1 分鐘讀完 (大約154個字)(PowerShell)Exit Code/Exit StatusPowerShell取得Exit Code/Exit Status的兩個常用系統變數:$?$LastExitCode繼續閱讀