-
Check which port PostgreSQL db is listening on
netstart -ano | findstr 432
-
Login to db using eware account
psql -U eware -h 127.0.0.1 -p 6432
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.25", | |
"description": "A mini sftp server with simple GUI controls", | |
"homepage": "http://www.coreftp.com/server/", | |
"license": "Freeware", | |
"architecture": { | |
"64bit": { | |
"url": "http://www.coreftp.com/server/download/mini-sftp-server.x64.exe", | |
"hash": "656ed613e9d963af8bb243141370810b39f3baa6f9828f87406c5d68af483607", | |
"shortcuts": [ |
I constantly kept getting this error - Your local changes to the following files would be overwritten by merge
PS C:\Users\Mark> scoop update
Updating Scoop...
Updating 'extras' bucket...
error: Your local changes to the following files would be overwritten by merge:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\voidtools\Everything] | |
"InstallService"=dword:00000000 | |
"InstallChooseVolumes"=dword:00000000 | |
"InstallQuickLaunchShortcut"=dword:00000000 | |
"InstallUpdateNotification"=dword:00000000 | |
"InstallLanguage"=dword:00000409 | |
"InstallRunAsAdmin"=dword:00000000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
::################################################################################################################################# | |
:: Elevate this script # | |
:: https://superuser.com/questions/1110448/how-to-run-batch-file-command-with-elevated-permissions/1310459#1310459 # | |
::################################################################################################################################# | |
( | |
:: Check Admin rights and create VBS Script to elevate | |
>nul fsutil dirty query %SYSTEMDRIVE% 2>&1 || ( | |
:: Very little red console |
Tested on Windows 10 and Python 3.9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[CmdletBinding(SupportsShouldProcess=$True)] | |
param( | |
) | |
#The download URL for the Teams Machine-Wide Installer for x64 systems. | |
$teamsInstallDownloadUri = "https://teams.microsoft.com/downloads/desktopurl?env=production&plat=windows&arch=x64&managedInstaller=true&download=true" | |
# -- Begin searching for a current install of Teams -- | |
Write-Verbose "Looking for a current installation of Teams Machine-Wide Installer." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Path = $env:TEMP; | |
$Installer = "chrome_installer.exe"; | |
Invoke-WebRequest "https://dl.google.com/chrome/install/latest/chrome_installer.exe" -OutFile "$Path$Installer"; | |
Start-Process -FilePath "$Path$Installer" -Args "/silent /install" -Verb RunAs -Wait; | |
Remove-Item "$Path$Installer" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$LocalTempDir = $env:TEMP; | |
$EdgeInstaller = "MSEdgeInstaller.exe"; | |
(new-object System.Net.WebClient).DownloadFile('https://c2rsetup.officeapps.live.com/c2r/downloadEdge.aspx?ProductreleaseID=Edge&platform=Default&version=Edge&source=EdgeStablePage&Channel=Stable&language=en', "$LocalTempDir\$EdgeInstaller"); | |
& "$LocalTempDir\$EdgeInstaller" /silent /install; | |
$Process2Monitor = "MSEdgeInstaller"; | |
Do { | |
$ProcessesFound = Get-Process | ?{$Process2Monitor -contains $_.Name} | Select-Object -ExpandProperty Name; | |
If ($ProcessesFound) { | |
"Still running: $($ProcessesFound -join ', ')" | Write-Host; Start-Sleep -Seconds 2 | |
} else { |