Ctrl+Shift+i should open the browser's Browser's Developer Tools panel.
Be sure it is on the console tab of that panel.
Then you can copy and paste the JS code below to clear the recents.
Open PowerShell as Administrator
In order to work on WSL, first shutdown (if nothing is running) wsl --shutdown wsl --manage debian --set-default-user root - Sets root as default in order to be able to change the password or other things on the regular account
Install distro without MS Store wsl --install -d debian
Get a list of distros
<# | |
.SYNOPSIS | |
This script updates the Request Access email address for all the webs for | |
a single Site Collection or Web Application's Site Collections. | |
.DESCRIPTION | |
This script searches through a site collection or web application's site collections | |
looking for the current email set for Access Requests, and replaces the current email | |
with the email provided in the script. |
#!/bin/bash | |
# APT Install of net-tools, MS VSCode (and dependencies), then reboot. | |
if [ "$(id -u)" -ne 0 ]; then | |
echo 'This script must be run with root privileges' >&2 | |
exit 1 | |
fi | |
apt update && apt upgrade -y |
#!/bin/bash | |
if [ "$(id -u)" -ne 0 ]; then | |
echo 'This script must be run with root privileges' >&2 | |
exit 1 | |
fi | |
if [ -f /var/run/reboot-required ]; then | |
echo "A reboot is required in order to proceed with the install." >&2 | |
echo "Please reboot and re-run this script to finish the install." >&2 |
#!/bin/bash | |
# This script is for Zorin!_OS 17 to download and install XRDP+XORGXRDP via source. | |
# | |
# Based on the following scripts: | |
# https://github.com/microsoft/linux-vm-tools/tree/master/ubuntu/18.04 | |
# https://github.com/microsoft/linux-vm-tools/pull/106 | |
# https://gist.github.com/phillipsj/a4b6e4a1070b4320ed19e061fe2dd83d | |
# https://gist.github.com/kaitwalla/9fbcef47c5ff2b58cd353ba3744be4e5 | |
# https://github.com/itsmebhavin/zorin-os-xrdp/blob/master/install.sh |
// ASSUMPTIONS: | |
/* | |
CORS is configured for SharePoint to allow your base url i.e.: *.domain.net | |
https://stackoverflow.com/questions/33367758/enable-cors-in-sharepoint-2013 | |
https://enable-cors.org/server_iis7.html | |
Fetch is used and polyfilled for IE | |
whatwg-fetch v3.0.0 | |
Promises are used and polyfilled for IE | |
promise-polyfill 8.1.3 | |
SharePoint is configured for JSONLite |