Similarly to the 7-zip silent install script, I also use the following script on my servers during their original build and patching: pushd "\\epmfileserver\share\utilities" npp.6.6.9.Installer.exe /S popd I’m not sure if any of you have ever used pushd and popd, but...
I’m just sharing a little script I use to install 7zip in silent mode. pushd "\\epmfileserver.mydomain.com\share\utilities" 7z920-x64.msi /q INSTALLDIR="C:\Program Files\7-Zip" popd I’m not sure if any of you have ever used pushd and popd, but they are pretty handy. The pushd...
I had to join several Windows 7 machines to a Samba 3.6 domain on CentOS 6. In order to join, you must make the following registry changes: HKLM\System\CCS\Services\LanmanWorkstation\Parameters DWORD DomainCompatibilityMode = 1 DWORD DNSNameResolutionRequired = 0 If you haven’t created a...
I had to migrate my Samba config from a CentOS5 box to a CentOS6 box. Samba was newer on the CentOS6 box. It was using Samba 3.5, while the CentOS 5 box still had Samba 3.0. The migration was pretty simple,...