I am getting the hang of it.
Going to deploy 10 pcs now and have alot of Windows 7 pcs to replace by the end of the year thanks to Windows 7 EOL Date. I also got 15 Lenovo PCs running windows 10 pro that need a wipe and new install.
I am getting the hang of it.
Going to deploy 10 pcs now and have alot of Windows 7 pcs to replace by the end of the year thanks to Windows 7 EOL Date. I also got 15 Lenovo PCs running windows 10 pro that need a wipe and new install.
Ok I am having trouble finding a simple guide to follow without overthinking it.
I created a new virtual machine on my VMware ESXi 5.5.0 server, registered it as a host first, now installing windows 10 pro on it.
Ok I got 1 new pc in my office and 10 more pcs on the way. I will be replacing all of windows 7 computers with new computers running windows 10 profession by the end of the year. I purchased a Windows 10 Pro upgrade open license to deploy a image to get these computers in production quicker.
What is the best way to get started?
Thanks for your help. I reinstall the FOG Project and it works out of the box. On my test pc it booted successfully to the PXE menu. Tested it twice using legacy mode and uefi mode!
In the meantime whats the best way to get a windows 10 pro image working?
I am looking at this site right now
https://www.ceos3c.com/sysadmin/create-generalized-windows-10-image-deploy-fog-server/
Ok I will revert back to a previous vm snapshot so I can use http instead of https and start over.
Good question, I just tried this and it returned results.
Here is my host file
<VirtualHost *:80>
<FilesMatch "\.php$">
SetHandler "proxy:fcgi://127.0.0.1:9000/"
</FilesMatch>
ServerName 10.141.13.96
ServerAlias fogserver.<redacted>.com
RewriteEngine On
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
RewriteRule /management/other/ca.cert.der$ - [L]
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}/$1 [R,L]
</VirtualHost>
<VirtualHost *:443>
KeepAlive Off
<FilesMatch "\.php$">
SetHandler "proxy:fcgi://127.0.0.1:9000/"
</FilesMatch>
ServerName 10.141.13.96
ServerAlias fogserver.<redacted>.com
DocumentRoot /var/www/html/
SSLEngine On
SSLProtocol all -SSLv3 -SSLv2
SSLCipherSuite ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA
SSLHonorCipherOrder On
SSLCertificateFile /etc/pki/tls/certs/STAR_grahamrmc_com.crt
SSLCertificateKeyFile /etc/pki/tls/private/_grahamrmc_com.key
SSLCertificateChainFile /etc/pki/tls/certs/STAR_grahamrmc_com.ca-bundle
<Directory /var/www/html/fog/>
DirectoryIndex index.php index.html index.htm
</Directory>
RewriteEngine On
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-d
RewriteRule ^/fog/(.*)$ /fog/api/index.php [QSA,L]
</VirtualHost>
I modifed the .fogsettings file portion where SSL Setting is
http:// doesn’t work either
Here is a screenshot of the dashboard with Certificate pulled up.
Its a Premium SSL Wildcard Certificate from Sectigo Certification Authority
Fresh install over SSL and changed settings to use my wildcard certificate. This was a test to register a host.
Any ideas?