Skip to content

Instantly share code, notes, and snippets.

Mount on O: drive letter your onedrive root folder as webdav and save the credentials.

net use O: https://d.docs.live.net/{cid}/ /savecred /p:yes

Detailled tuto here

@ssavva05
ssavva05 / .. MediaCreationTool.bat ..md
Created October 5, 2021 11:05 — forked from AveYo/.. MediaCreationTool.bat ..md
Universal MediaCreationTool wrapper for all MCT Windows 10 versions from 1507 to 21H1 with business (Enterprise) edition support

Not just an Universal MediaCreationTool wrapper script with ingenious support for business editions,
Preview
A powerful yet simple windows 10 / 11 deployment automation tool as well!

configure via set vars, commandline parameters or rename script like iso 21H2 Pro MediaCreationTool.bat
recommended windows setup options with the least amount of issues on upgrades already set
awesome keyboard focus dialogs to pick windows version and enhanced preset action

Auto Setup for upgrading directly with the auto-detected Edition, Language, Architecture *
- can troubleshoot auto setup failing by adding no_update to script name

@ssavva05
ssavva05 / macOS-in-virtualbox.md
Created November 27, 2021 19:57 — forked from mcandre/macOS-in-virtualbox.md
Notes on getting macOS Sierra running in Virtualbox on a Windows 10 host

On Mac

Download, but don't run, the Sierra installer from the Mac App Store. This places the installer at /Applications/Install\ macOS\ Sierra.app/.

Now run the following commands to build a suitable VM image from the installer:

git clone https://github.com/jonanh/osx-vm-templates
cd osx-vm-templates/packer

sudo ../prepare_iso/prepare_vdi.sh -D DISABLE_REMOTE_MANAGEMENT -o macOS_10.12.vdi /Applications/Install\ macOS\ Sierra.app/ .

To install macOS High Sierra 10.13.5 on a virtual machine using VMware:

  1. If you have not installed VMware Workstation on a Windows operating system before, please refer to the following video.

https://www.youtube.com/watch?v=-Uf9-6SPiMY

  1. After installing VMware Workstation, you need the VMware Unlocker program to create a new virtual machine for the MacOS High Sierra 10.13.5 installation. To download the VMware Unlocker program to your computer, visit the link below.

Article ➦ https://www.sysnettechsolutions.com/en/vmware/download-vmware-unlocker-2-1-1/

@ssavva05
ssavva05 / Appx-Uninstaller.ps1
Created August 7, 2023 21:42 — forked from ThioJoe/Appx-Uninstaller.ps1
A basic script for uninstalling a list of app packages in Windows 10/11, including those pre-installed with Windows
# A basic script for uninstalling app packages in Windows 10/11, including those pre-installed with Windows
#
# Note: If you get an error about the script not being allowed to run, the below command will change the execution polciy temporarily for one session only:
# Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
#
# To execute the script, open a Powershell window to the directory with the script and run the following command using your scripts file name (and don't forget the .\ )
# .\WhateverScriptName.ps1
# -------------------------------------------------------------------------------------------
# Script by ThioJoe - https://github.com/ThioJoe