默认分类 Chrome浏览器离线下载 ``` https://www.google.cn/intl/zh-CN/chrome/?standalone=1&platform=win64 https://www.google.cn/chrome/next-steps.html?standalone=1&platform=win64 ``` 阅读全文 2026-04-06 丿记性不太好丶 0 条评论 23 次浏览
默认分类 ESD 转WIM命令行 ``` dism /Get-WimInfo /WimFile:install.esd 查索引 转换 dism /Export-Image /SourceImageFile:install.esd /SourceIndex:4 /DestinationImageFile:install.wim /Compress:max /CheckIntegrity ``` 阅读全文 2026-04-06 丿记性不太好丶 0 条评论 20 次浏览
默认分类 Hyper-V开启嵌套虚拟化 ``` get-vm Get-VMProcessor 主机名 | fl Set-VMProcessor 主机名 -ExposeVirtualizationExtensions $true Get-VMProcessor -VMName 主机名 | fl 查看设置结果 Get-VMNetworkAdapter -VMName | Set-VMNetworkAdapter -MacAddressSpoofing On ``` 阅读全文 2026-02-05 丿记性不太好丶 0 条评论 126 次浏览
默认分类 本地Exchange 重建 EWS目录 ``` Get-WebServicesVirtualDirectory -Server outex1 |Remove-WebServicesVirtualDirectory New-WebServicesVirtualDirectory -Server outex1 ``` 阅读全文 2026-01-22 丿记性不太好丶 0 条评论 135 次浏览
默认分类 M365公网发布会议室以及日历 ``` 1. 启用外部预订并应用策略 请在 Exchange Online PowerShell 中针对剩余会议室执行以下命令: Set-CalendarProcessing -Identity "xxx" ` -ProcessExternalMeetingMessages $true ` -AutomateProcessing AutoAccept ` -AllowRecurringMeetings $true ` -MaximumDurationInMinutes 480 说明: • ProcessExternalMeetingMessages $true → 允许外部组织者发送会议邀请。 • AutomateProcessing AutoAccept → 自动接受会议请求。 • AllowRecurringMeetings $true → 允许周期性会议。 • MaximumDurationInMinutes 480 → 最大预订时长 = 8小时。 ________________________________________ 2. 验证设置 执行以下命令确认配置是否正确: PowerShell Get-CalendarProcessing -Identity "xxxx" | fl ProcessExternalMeetingMessages,AutomateProcessing,AllowRecurringMeetings,MaximumDurationInMinutes 3.可以设置邮件流规则拒绝非指定邮箱预定 ``` 发布预定日历,可以让组织外部的人通过连接开到日历状态。 `Set-MailboxCalendarFolder -Identity "room@yourdomain.onmicrosoft.com:\Calendar" -PublishEnabled $true` 可加额外参数: -PublishEnabled $true:强制开启日历发布功能,开启后自动生成两个访问 URL -DetailLevel LimitedDetails:对外仅展示忙闲状态、会议主题和地点(隐藏参会人信息,推荐公开发布场景) -PublishScope External:核心配置,允许组织外人员通过链接访问(无此参数则仅内网可访问) 开启后即可get URL `Get-MailboxCalendarFolder -Identity "room@yourdomain.com:\Calendar" | Select-Object Identity, PublishEnabled, PublishedCalendarUrl, PublishedICalUrl` 阅读全文 2026-01-22 丿记性不太好丶 0 条评论 136 次浏览