10-24-2019 12:49 AM
03-27-2020 04:47 PM
03-19-2020 05:14 PM
01-16-2020 05:11 PM
01-15-2020 04:32 PM
01-16-2020 12:50 AM
RCCOLA37 wrote:
Can I modify this script somehow to get it to update to 1909?
01-08-2020 07:26 PM
01-09-2020 07:00 AM
Steven-REXtac wrote:
Okay I tried to do this Package but I had alot of trouble with it. Is there any possible way someone could write up a step by step on this? I mean it creates a folder in this script but doesnt say what files are in those Folders. Also where I can find the ESD File and the upgrade Executable? Like maybe send a direct link because I did a Google Search and had no luck, And Can someone Explain why this package has the Installer run 3 Times? Thanks in Advance![]()
CyberCitizen wrote:
Disable Sleep on Battery so it doesn't go to sleep while deploying
cmd.exe /c powercfg -x -standby-timeout-dc 0
Disable Sleep on Mains Power so it doesn't go to sleep while deploying
cmd.exe /c powercfg -x -standby-timeout-ac 0
Install Win 10 without Rebooting the machine (eg allows the user to reboot at night, if you want the machine to reboot remove the /noreboot switch).
"{PackageShare}\Microsoft\Windows 10 v1903\setup.exe" /auto upgrade /quiet /noreboot /Compat IgnoreWarning
12-02-2019 12:20 AM
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Version,
tblAssets.Domain,
tblAssetCustom.Location,
tsysIPLocations.IPLocation,
tblAssets.IPAddress,
tsysAssetTypes.AssetTypename As Type,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssets.Lastseen,
tsysAssetTypes.AssetTypeIcon10 As icon,
Case
When tblAssets.Version Like '1903%' Then '#d4f4be'
Else '#ffadad'
End As backgroundcolor
From tblAssets
Left Outer Join tsysIPLocations On tblAssets.IPNumeric >=
tsysIPLocations.StartIP And tblAssets.IPNumeric <= tsysIPLocations.EndIP
Inner Join tsysAssetTypes On tblAssets.Assettype = tsysAssetTypes.AssetType
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Left Outer Join tsysOS On tblAssets.OScode = tsysOS.OScode
Where tblAssets.IPAddress Is Not Null And tblAssets.IPAddress != '' And
tsysAssetTypes.AssetTypename = 'Windows' And tblAssetCustom.State = 1
Order By tblAssets.Version,
tblAssets.IPNumeric
12-02-2019 12:18 AM