Dino9021
技術記事與生活
2021-01-28
Create Linux VM From Image
›
# Define a credential object $securePassword = ConvertTo-SecureString 'P@$$w0rd' -AsPlainText -Force $cred = New-Object System.Manag...
2021-01-20
Service Endpoint vs Private Endpoint
›
On Storage Account: Allow access from selected subnets in Azure vNet (For Free) On Azure vNet Subnet: Apply Service Endpoint Policy (For Fre...
2021-01-19
AutoMount VHDx in Azure File Shares for Storage Pool Virtual Disk
›
Azure Files 就是 Storage Account 的 File Share,直接用 \\UNCPath\ 的方式存取效能不佳 (謎?) 如果在其上建立 VHDx 並在一台 VM 中 Mount 起來當成 File Server 來提供服務效能較佳,若用多個 VHDx ...
2021-01-15
Backup and Restore NTFS Permission (ACL) and Owner with PowerShell
›
Backup $TargetPath = 'C:\PathToBackup'; $ACLFile = 'C:\NTFSBackup.csv'; $PathReplaceKeyword = 'AKeywordToReplacePathForR...
2021-01-08
FSLogix User Profile Folder & Disk ACL Fix
›
不知動到什麼東西導致 FSLogix 的 USer Profile 路徑下 NTFS Permission 亂掉 User Account 專屬的權限消失 因為 FSLogix 的目錄結構跟 Microsoft VDI 不一樣,所以不能直接用 這篇文章 的 Script 修 於是...
2021-01-07
Robocopy 複製 NTFS ACL (Permission) 與差異化複製 (Differential Copy)
›
複製 NTFS ACL (Permission) RoboCopy <source> <target> /MIR /SEC /SECFIX 差異化複製 Differential Copy RoboCopy <source> ...
2021-01-02
Azure Windows 10 Multi-Session Language Packs 多國語言包離線安裝
›
不知為何在 Azure 上建立的 Windows 10 Multi-Session Version 用線上安裝語言包進度都不會動 而且之前記錄的這篇 Windows 10 Language Packs 多國語言字型問題 的指令敲下去也不會動 找了一下, 微軟有提供語言包 IS...
2020-12-30
Azure Note: ADDS integrated Azure File Share with Private Endpoint
›
ADDS integrated Azure File Share 1. Azure vNet DNS set to ADDS DNS 2. Add Private DNS zone (Or Auto Create in Step 3.2.3) 2.1 Named: priv...
2020-12-28
PowerPoint 存成圖片檔的解析度調整
›
PowerPoint 很小氣,預設輸出圖片只有 1280x720 如果需要輸出高解析度的話必須要修改註冊機碼 微軟說明在此: https://docs.microsoft.com/en-us/office/troubleshoot/powerpoint/change-export...
2020-12-25
Powershell Password Generator
›
$Password = ("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".tochararray() | sort {Get-Random})[0..15] -join ...
‹
›
首頁
查看網路版