UTC: 2025-04-20 18:01
virtualex-itv/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the Chocolatey-AU module.
Ignored | History | Force Test | [Rele
Function prompt { | |
# https://github.com/dahlbyk/posh-git/wiki/Customizing-Your-PowerShell-Prompt | |
$realLASTEXITCODE = $LASTEXITCODE | |
Write-Host | |
If ($PSVersionTable.PSEdition -eq 'Core') { | |
Write-Host '(Core) ' -NoNewLine | |
} | |
Write-Host "[" -NoNewLine |
# All credit goes to William Lam (@lamw) | |
# https://www.virtuallyghetto.com/2019/07/automated-esxi-installation-to-usb-using-kickstart.html | |
vmaccepteula | |
install --firstdisk=usb --overwritevmfs --novmfsondisk | |
reboot | |
network --bootproto=static --ip=192.168.30.13 --netmask=255.255.255.0 --gateway=192.168.30.1 --hostname=hades-canyon.primp-industries.com --nameserver=192.168.30.1 --addvmportgroup=1 | |
rootpw VMware1! |
#!/bin/bash | |
# Copyright (c) Alex Lopez 2019 | |
# All rights reserved | |
# vim: tabstop=4 shiftwidth=4 | |
# | |
# An installer script for open-vm-tools | |
# | |
# Note: place script in users $HOME dir and make it executable | |
# | |
# Requires: |
UTC: 2025-04-20 18:01
virtualex-itv/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the Chocolatey-AU module.
Ignored | History | Force Test | [Rele
#!/bin/bash | |
# Copyright (c) Alex Lopez 2023 | |
# All rights reserved | |
# vim: tabstop=4 shiftwidth=4 | |
# [OPTIONAL] Uninstall old docker versions | |
sudo apt-get remove docker docker-engine docker.io containerd runc | |
# Refresh latest version | |
sudo apt-get update |
########################################### | |
# Get VMware Workstation License Key # | |
# https://kb.vmware.com/s/article/1000069 # | |
# # | |
# Author: virtualex (Alex Lopez) # | |
########################################### | |
$softwareName = 'VMware Workstation' | |
Write-Host -F Yellow Retrieving $softwareName Pro License Key...`n |