-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vmware-workstation-pro-np: Add version 17.5.2-23775571
vmware-workstation-player-np: Remove manifest
- Loading branch information
Showing
2 changed files
with
70 additions
and
52 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"version": "17.5.2-23775571", | ||
"homepage": "https://www.vmware.com/products/desktop-hypervisor.html", | ||
"description": "An application for creating and running virtual machines on your computer.", | ||
"license": { | ||
"identifier": "Proprietary", | ||
"url": "https://www.broadcom.com/company/legal/terms-of-use" | ||
}, | ||
"suggest": { | ||
"vcredist": "extras/vcredist" | ||
}, | ||
"architecture": { | ||
"64bit": { | ||
"url": "https://softwareupdate.vmware.com/cds/vmw-desktop/ws/17.5.2/23775571/windows/core/VMware-workstation-17.5.2-23775571.exe.tar", | ||
"hash": "907b4d60b94d64e9b44acb97cc279fde51f91be58833ced17993b9c6c0129a54" | ||
} | ||
}, | ||
"pre_install": [ | ||
"if (!(is_admin)) { error \"$app requires admin rights to $cmd\"; break }", | ||
"Start-Process -Wait ($exe = \"$dir/VMware-workstation-$version.exe\") /x", | ||
"$temp = $env:TEMP+'/'+(Select-Xml /component/installerList/installer/productCode \"$dir/descriptor.xml\").Node.'#text'+'~setup'", | ||
"Move-Item \"$temp/VMwareWorkstation.msi\" \"$dir\"", | ||
"Remove-Item -Recurse $temp,$exe", | ||
"Start-Process -Wait \"$dir/VMwareWorkstation.msi\" \"/qn /norestart ADDLOCAL=ALL ADDVKDTOPATH=0 AUTOSOFTWAREUPDATE=0 DATACOLLECTION=0 DESKTOP_SHORTCUT=0 EULAS_AGREED=1 INSTALLDIR=\"\"$dir\"\" STARTMENU_SHORTCUT=0\"" | ||
], | ||
"pre_uninstall": [ | ||
"if (!(is_admin)) { error \"$app requires admin rights to $cmd\"; break }", | ||
"Set-Service VMAuthdService -StartupType Disabled", | ||
"Stop-Service VMAuthdService", | ||
"Get-Process vmware-tray -ErrorAction Ignore | Stop-Process", | ||
"Start-Process -Wait \"$dir/VMwareWorkstation.msi\" '/qn /norestart /uninstall'" | ||
], | ||
"bin": [ | ||
"vmware.exe", | ||
"bin/vctl.exe", | ||
"bin/docker-machine-driver-vmware.exe", | ||
"x64/vmware-vmx.exe", | ||
"x64/vmware-vmx-debug.exe", | ||
"x64/vmware-vmx-stats.exe", | ||
"x64/mksSandbox.exe", | ||
"x64/mksSandbox-debug.exe", | ||
"x64/mksSandbox-stats.exe", | ||
"x64/tpm2emu.exe" | ||
], | ||
"shortcuts": [ | ||
[ | ||
"vmware.exe", | ||
"VMware Workstation Pro" | ||
] | ||
], | ||
"checkver": { | ||
"url": "https://scoop.sh", | ||
"script": [ | ||
"try {", | ||
" ([string]$version = ([Version[]](($_ = (Invoke-RestMethod https://softwareupdate.vmware.com/cds/vmw-desktop/ws/).html.body.ul.li.a.'#text')[1..$_.Length]) | Sort-Object)[-1]),", | ||
" ([UInt32[]](($_ = (Invoke-RestMethod https://softwareupdate.vmware.com/cds/vmw-desktop/ws/$version).html.body.ul.li.a.'#text')[1..$_.Length]) | Sort-Object)[-1] -join ' '", | ||
"}", | ||
"catch { '' }" | ||
], | ||
"regex": "\\A([\\d.]+) (\\d+)\\Z", | ||
"replace": "${1}-${2}" | ||
}, | ||
"autoupdate": { | ||
"architecture": { | ||
"64bit": { | ||
"url": "https://softwareupdate.vmware.com/cds/vmw-desktop/ws/$match1/$match2/windows/core/VMware-workstation-$version.exe.tar" | ||
} | ||
} | ||
} | ||
} |