Bertland Hope

Computer Support And Services in Kingston Open 24 hours

work in progress

Requests from customers plus

WIP

unattended deployment

Install operating systems

OS

push software

Install packages remotely

Software

Selected publications

Hope, Bertland G. H. 2022. How to ~ Cellular Phones Answered. LinkedIn (on pulse). https://www.linkedin.com/pulse/how-cellular-phones-answered-bertland-hope/

Hope, Bertland G. H. 2022. What is Location Tracking?. LinkedIn (on pulse ). https://www.linkedin.com/pulse/what-location-tracking-bertland-hope/

Hope, Bertland G. H. 2022. You aren’t checking your website while you’re in a classroom, are you?. LinkedIn (on pulse ). https://www.linkedin.com/pulse/you-arent-checking-your-website-while-youre-classroom-bertland-hope/

Recent presentations

Hope, Bertland G. H. 2022. Select appropriate input/output devices to meet the needs of specified application. YouTube (on MrCsecIT). https://www.youtube.com/watch?v=1gRHENYAhxM

Hope, Bertland G. H. 2022. Explain how the major hardware components of a computer system interrelate. YouTube (on MrCsecIT ). https://www.linkedin.com/pulse/what-location-tracking-bertland-hope/

Hope, Bertland G. H. 2022. Installing and Managing Active Directory Certificate Services. Reddit (on r/ComputerLifeSupport ). https://www.reddit.com/r/ComputerLifeSupport/collection/2e71b736-030a-4937-b624-c3ecfded5647

Upload videos

Become a better school leader from Computer Life Support.

Latest Posts

Clean old spooled documents.
Clean old spooled documents.

Requirements:

Must run as administrator

Active Directory One-Liners
Active Directory One-Liners

FSMO Roles

ntdsutilroles Connections “Connect to server %logonserver%” Quit “selectOperation Target” “List roles for conn server” Quit Quit Quit [JDH: This is really a series of steps, not a single command expression]

Deploy Office 365 (for IT Pros)
Deploy Office 365 (for IT Pros)

To download 32bit office

networkSharePath\office\Office365> .\setup.exe /download Configuration-32.xml

create a file save it as add the content below download Configuration-32.xml

<Configuration>
<Add OfficeClientEdition=”32” Channel=”Current” SourcePath=”networkSharePath\office\Office365\86” AllowCdnFallback=”FALSE”>
<Product ID=”O365BusinessRetail”>
<Language ID=”en-us” />
</Product>
</Add>
<Property Name=”SharedComputerLicensing” Value=”0” />
<Property Name=”SCLCacheOverride” Value=”0” />
<Property Name=”AUTOACTIVATE” Value=”0” />
<Property Name=”FORCEAPPSHUTDOWN” Value=”FALSE” />
<Property Name=”DeviceBasedLicensing” Value=”0” />
<Updates Enabled=”TRUE” />
<RemoveMSI />
<Display Level=”None” AcceptEULA=”TRUE” />
</Configuration>

To Remove 32bit Office

networkSharePath\office\Office365> .\setup.exe /configure uninstall-Office365ProPlus-32.xml

create a file save it as add the content below download uninstall-Office365ProPlus-32.xml
<Configuration>
<Remove OfficeClientEdition=”86”>
<Product ID=”O365BusinessRetail”>
<Language ID=”en-us”/>
</Product>
</Remove>
<Display Level=”None” AcceptEULA=”TRUE”/>
</Configuration>

To install 32bit

networkSharePath\office\Office365> .\setup.exe /configure Configuration-32.xml

<Configuration>
<Add OfficeClientEdition=”32” Channel=”Current” SourcePath=”networkSharePath\office\Office365\86” AllowCdnFallback=”FALSE”>
<Product ID=”O365BusinessRetail”>
<Language ID=”en-us” />
</Product>
</Add>
<Property Name=”SharedComputerLicensing” Value=”0” />
<Property Name=”SCLCacheOverride” Value=”0” />
<Property Name=”AUTOACTIVATE” Value=”0” />
<Property Name=”FORCEAPPSHUTDOWN” Value=”FALSE” />
<Property Name=”DeviceBasedLicensing” Value=”0” />
<Updates Enabled=”TRUE” />
<RemoveMSI />
<Display Level=”None” AcceptEULA=”TRUE” />
</Configuration>