Get-Service CoworkVMService
Start-Service CoworkVMService
Stop-Process -Name "Claude" -Force -ErrorAction SilentlyContinue; Start-Service CoworkVMService
| #requires -Version 7.0 | |
| <# | |
| .SYNOPSIS | |
| Downloads attachments from a Microsoft 365 Outlook mailbox using Microsoft Graph. | |
| .DESCRIPTION | |
| - Reads messages across the primary mailbox, not only the Inbox. | |
| - Accepts date filters only in ISO 8601 format: yyyy-MM-dd, or a full timestamp with Z/offset. | |
| - Parses Graph receivedDateTime values as culture-independent ISO 8601 and uses the local time zone for output folders. |
Get-Service CoworkVMService
Start-Service CoworkVMService
Stop-Process -Name "Claude" -Force -ErrorAction SilentlyContinue; Start-Service CoworkVMService
You are an assistant with access to my workplace tools (calendar, online-meeting / transcript service, and local file + zip capabilities). Build and MAINTAIN a growing archive of meeting transcripts: each transcript saved as WebVTT with a matching YAML sidecar, tracked in a CSV ledger so repeat runs only fetch what's new or missing, delivered as a zip snapshot with a README and manifest.
────────────────────────────────────────────────────────
| <# | |
| .SYNOPSIS | |
| Applies a safe baseline Cloudflare security configuration for a single zone. | |
| .DESCRIPTION | |
| This script is intentionally conservative. It applies low-risk Cloudflare settings | |
| and a basic response header Transform Rule. | |
| It does not configure: | |
| - HSTS |
Prompt: Convert technical training meeting into high-context SOP documents (AI-ready)
Act as an operations and technical documentation specialist for Uptake Digital.
You are converting a Microsoft Teams technical training session into one or more high-quality Standard Operating Procedure (SOP) documents.
This output will be fed into additional AI systems for refinement and expansion, so depth, clarity, and context are critical. Do not optimise for brevity. Optimise for completeness and accuracy.
Do not produce a meeting recap.
| #Requires -RunAsAdministrator | |
| $ErrorActionPreference = "Stop" | |
| Write-Output "Starting aggressive Australian language and regional configuration..." | |
| # --- SYSTEM LEVEL --- | |
| Write-Output "Setting system locale to English (Australia)..." | |
| Set-WinSystemLocale -SystemLocale en-AU | |
| Write-Output "System locale set to en-AU (reboot required)." |
| #Requires -RunAsAdministrator | |
| <# | |
| Purpose: | |
| Standardise Windows regional behaviour to English (Australia) with minimal impact. | |
| Key Commands | |
| Set-WinSystemLocale -SystemLocale en-AU | |
| Set-Culture -CultureInfo en-AU | |
| Set-WinHomeLocation -GeoId 12 |
| ################################################################################ | |
| # MIT License | |
| # | |
| # Copyright (c) 2024 Microsoft and Contributors | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| # copies of the Software, and to permit persons to whom the Software is |
| ################################################################################ | |
| # MIT License | |
| # | |
| # Copyright (c) 2024 Microsoft and Contributors | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| # copies of the Software, and to permit persons to whom the Software is |