Goto Preferences
Show settings ALL
Give it a password and save. Then restart VLC
Knowledge that I've gathered and stored for your convenience and mine!
Goto Preferences
Give it a password and save. Then restart VLC
Install Debian on a box. This example has it being installed on ProxMox
Did a standard installation of Debian 13.2.0
The only 'additional' option I added at time of install was the SSH server.
Once installed the box was patched
sudo apt update && sudo apt upgrade -y
Then the following command was run (from the access server install on the openVPN site). And it did the whole thing for this installation.
bash <(curl -fsS https://packages.openvpn.net/as/install.sh) --yes
My installation didn't come with CURL so it errored, you can install CURL this way
sudo apt install curl
It will go through a bunch of installation routines.
You should note that the installation will generate a user/password during install. It will look something like this:
https://IPofServer:943/admin
We recently converted a few hundred users PCs from their old 365 tenant to our tenant (company purchase).
From the PC perspective, we had the users do the conversion of the machine (disjoin/join). They followed a 50-step guide with pictures of what to do, had around 200 users do it themselves. IT would remote in once in a while when something occurred that didn't match the document but was minimal overall.
CONVERSION SYNOPSIS
We the user add a local 'other users' account to the computer. This account was given administrative privileges and allowed them to use this account to facilitate the switching from one 365 domain to another. This conversion for us, resulted in NO data loss. Our users were still able to access their old 365 tenant /user account and get data. Prior to the migration, we had users export their browser bookmarks into a file on the computer which they could import upon conversion.
From a OneDrive and Outlook email perspective, we used a 3rd party cloud tool to migrate this data from one tenant to another. We did develop procedure to do this all manually; however, the time and effort it saved us and our users was worth using.
Once they added the local admin account, it was then logged into. The account name was "conversion" in this example
When disjoined, MS has you do an account check to ensure you can log back into the computer.
Users just used the local admin "conversion" account they created.
Computer is rebooted and the users log back into the local account
They re-add themselves to the new 365 account.
It's important that they use this option and not the top one.
Param(
[Parameter(Mandatory = $False)]
[String]$SharepointURL = "https://COMPANYINC-admin.sharepoint.com/",
[Parameter(Mandatory = $False)]
[String]$tenantID = "TENANTID",
[Parameter(Mandatory = $True)]
[String]$UserEmail = ""
)
# Connect to services
Connect-MgGraph -TenantId $tenantID -Scopes 'User.Read.All'
Connect-SPOService -Url $SharepointURL
Write-Host "Checking if user $UserEmail exists..."
try {
$u = Get-MgUser -UserId $UserEmail -Select UserPrincipalName, AssignedLicenses
if ($u) {
Write-Host "User found. Requesting OneDrive provisioning for $($u.UserPrincipalName)..."
Request-SPOPersonalSite -UserEmails @($u.UserPrincipalName) -NoWait
Write-Host "Provisioning request submitted successfully."
Write-Host "Note: OneDrive creation is asynchronous and may take time."
}
}
catch {
Write-Error "Could not find user $UserEmail or unable to query Microsoft Graph."
}
Disconnect-SPOService
Disconnect-MgGraph.\singleconvert.ps1This will show you how to configure VLC to broadcast as an NDI source.
1>
Download the NDI tools for your computer. Windows 11 is used in this example
https://ndi.video/tools/vlc-plugin-2/
At time of writing, April/2026 when you pre-provision one drive for a migration, this URL in microsoft provides you a PowerShell script
Pre-provision OneDrive for users in your organization - SharePoint in Microsoft 365 | Microsoft Learn
This script that you can download from Microsoft site looks like this:
Script ran:
This option may work with some graphics cards.
Use the Settings app option if problems are encountered
Ctrl + Alt + Up arrow – rotates to landscape mode.
Ctrl + Alt + Down arrow – rotates the screen upside down.
Ctrl + Alt + Right arrow – rotates the screen 90 degrees (right).
Ctrl + Alt + Left arrow – rotates the screen 90 degrees (left).
To return to the normal orientation, use the "Ctrl + Alt + Up arrow" keyboard shortcut.