Skip to content

VRPC.COM

Virtual Reality Powered Computer

  • Home
  • Apple
  • Apps
  • Mobile Devices
    • Jailbreak
  • Network
  • Servers
  • Windows
  • Hackintosh

windows 2012 R2 domain AD health check

Posted on June 21, 2017 - June 21, 2017 by vrpc

list of simple commands to check the health of AD

  1. DCs replication status (CMD):
    repadmin /showrepl
  2. domain replication status (CMD):
    dcdiag /v
  3. MS AD replication status tool:
    https://www.microsoft.com/en-us/download/details.aspx?id=30005
Posted in Servers, Tools, WindowsTagged AD domain, windows 2012 R2

Purple screen crash on ESXi 5.5 with Windows Server 2012 R2

Posted on June 6, 2017 - June 6, 2017 by vrpc

the problem seems to be in the NIC driver.

https://communities.vmware.com/message/2313523

There are two reported fixes:

  1. Disable Receive-side scaling (MS article)
    1. On the virtual machine, open Device Manager (In Settings click Control Panel, and then click Device Manager).

    2. Expand Network adapters, right-click the network adapter you want to work with, and then click Properties.

    3. On the Advanced tab in the network adapter properties, locate the setting for Receive-side scaling and make sure it is disabled.

      or use powershell:

      Set-NetAdapterRSS -Name "AdapterName" -Enabled $False

       

  2. Second option is to use vmxnet3 driver instead of the E1000E
    1. Inside the windows host OS make a note of all the NIC information (IP/ MASK/Gate/DNS etc.)
    2. Remove the old NIC using the vSphere console by editing the windows 2012 server host properties (if needed copy the old MAC address and after deleting the old NIC enter it to the properties of the new NIC)
    3. Using the VMWARE vSphere client edit the virtual machine and add new NIC card (make sure to select VMXNET3 as a adapter type).
    4. Edit the new NIC properties inside the windows 2012 server host OS with the previously noted information to make the new NIC be identical to the old one.
    5. Enable the new nic and restart the windows 2012 server

 

I found some people to report that turning OFF the Receive-side scaling didn’t help.

The second option seems to be a better choice since the new VMWARE VMXNET3 driver has a better design with many improvements.

 

Posted in Servers, WindowsTagged ESXI 5.5, Purple Crash

Switch to AHCI mode in windows 10 with BitLocker enabled

Posted on June 2, 2017 - June 2, 2017 by vrpc
  1. click on start and type manage BitLocker and launch it. (requires administrative user)
  2. click on Turn off BitLocker (wait on the decryption to finish – it is indicated in the system tray)
  3. reboot your computer to make sure BitLocker is disabled.
  4. Right-click the Windows Start Menu and click on Command Prompt (Admin).
  5. Enter: bcdedit /set {current} safeboot minimal
  6. Reboot the computer in to the BIOS  (F2,Del,ESC,F12 or other key depending on the computer manufacturer).
  7. Look for SATA operation mode and change it to AHCI and save + reboot computer. (F10 key etc.)
  8. windows should start up in safemode.
  9. Right-click the Windows Start Menu and click on Command Prompt (Admin).
  10. Enter: bcdedit /deletevalue {current} safeboot
  11. reboot computer and windows should start up normally again.
  12. click on start and type manage BitLocker and launch it. (requires administrative user)
  13. click on Turn ON BitLocker you will be required to reboot computer.
  14. after reboot wait on the encryption to finish – it is indicated in the system tray
Posted in WindowsTagged AHCI, BitLocker, BOOT

Reuse/ recycle your old computer as a chromebook

Posted on June 1, 2017 - June 1, 2017 by vrpc

Simple instructions can be found here:

https://www.linux.com/learn/turn-your-old-laptop-chromebook

 

 

Posted in LinuxTagged chromebook

Disable iCloud and siri prompt when new user login

Posted on May 31, 2017 by vrpc

After setting up clean install of macOS Sierra in a multi-user environment (computer lab) it is useful to disable iCloud and siri prompt at the first login.

Here is the original link with instructions and a script to disable iCloud promt:

https://derflounder.wordpress.com/2013/10/27/disabling-the-icloud-sign-in-pop-up-message-on-lion-and-later/

the script is:

#!/bin/sh

# Determine OS version
osvers=$(sw_vers -productVersion | awk -F. '{print $2}')
sw_vers=$(sw_vers -productVersion)

# Checks first to see if the Mac is running 10.7.0 or higher. 
# If so, the script checks the system default user template
# for the presence of the Library/Preferences directory.
#
# If the directory is not found, it is created and then the
# iCloud pop-up settings are set to be disabled.

if [[ ${osvers} -ge 7 ]]; then

 for USER_TEMPLATE in "/System/Library/User Template"/*
  do
    defaults write "${USER_TEMPLATE}"/Library/Preferences/com.apple.SetupAssistant DidSeeCloudSetup -bool TRUE
    defaults write "${USER_TEMPLATE}"/Library/Preferences/com.apple.SetupAssistant GestureMovieSeen none
    defaults write "${USER_TEMPLATE}"/Library/Preferences/com.apple.SetupAssistant LastSeenCloudProductVersion "${sw_vers}"
  done

 # Checks first to see if the Mac is running 10.7.0 or higher.
 # If so, the script checks the existing user folders in /Users
 # for the presence of the Library/Preferences directory.
 #
 # If the directory is not found, it is created and then the
 # iCloud pop-up settings are set to be disabled.

 for USER_HOME in /Users/*
  do
    USER_UID=`basename "${USER_HOME}"`
    if [ ! "${USER_UID}" = "Shared" ] 
    then 
      if [ ! -d "${USER_HOME}"/Library/Preferences ]
      then
        mkdir -p "${USER_HOME}"/Library/Preferences
        chown "${USER_UID}" "${USER_HOME}"/Library
        chown "${USER_UID}" "${USER_HOME}"/Library/Preferences
      fi
      if [ -d "${USER_HOME}"/Library/Preferences ]
      then
        defaults write "${USER_HOME}"/Library/Preferences/com.apple.SetupAssistant DidSeeCloudSetup -bool TRUE
        defaults write "${USER_HOME}"/Library/Preferences/com.apple.SetupAssistant GestureMovieSeen none
        defaults write "${USER_HOME}"/Library/Preferences/com.apple.SetupAssistant LastSeenCloudProductVersion "${sw_vers}"
        chown "${USER_UID}" "${USER_HOME}"/Library/Preferences/com.apple.SetupAssistant.plist
      fi
    fi
  done
fi

 

 

And here is the original link with information on how to disable siri:

https://derflounder.wordpress.com/2016/09/20/supressing-siri-pop-up-windows-on-macos-sierra/

and here is the script

#!/bin/bash

# Determine OS version
osvers=$(sw_vers -productVersion | awk -F. '{print $2}')
sw_vers=$(sw_vers -productVersion)

# Determine OS build number

sw_build=$(sw_vers -buildVersion)

# Checks first to see if the Mac is running 10.7.0 or higher. 
# If so, the script checks the system default user template
# for the presence of the Library/Preferences directory. Once
# found, the iCloud, Diagnostic and Siri pop-up settings are set 
# to be disabled.

if [[ ${osvers} -ge 7 ]]; then

 for USER_TEMPLATE in "/System/Library/User Template"/*
  do
    /usr/bin/defaults write "${USER_TEMPLATE}"/Library/Preferences/com.apple.SetupAssistant DidSeeCloudSetup -bool TRUE
    /usr/bin/defaults write "${USER_TEMPLATE}"/Library/Preferences/com.apple.SetupAssistant GestureMovieSeen none
    /usr/bin/defaults write "${USER_TEMPLATE}"/Library/Preferences/com.apple.SetupAssistant LastSeenCloudProductVersion "${sw_vers}"
    /usr/bin/defaults write "${USER_TEMPLATE}"/Library/Preferences/com.apple.SetupAssistant LastSeenBuddyBuildVersion "${sw_build}"
    /usr/bin/defaults write "${USER_TEMPLATE}"/Library/Preferences/com.apple.SetupAssistant DidSeeSiriSetup -bool TRUE      
  done
  
 # Checks first to see if the Mac is running 10.7.0 or higher.
 # If so, the script checks the existing user folders in /Users
 # for the presence of the Library/Preferences directory.
 #
 # If the directory is not found, it is created and then the
 # iCloud, Diagnostic and Siri pop-up settings are set to be disabled.

 for USER_HOME in /Users/*
  do
    USER_UID=`basename "${USER_HOME}"`
    if [ ! "${USER_UID}" = "Shared" ]; then
      if [ ! -d "${USER_HOME}"/Library/Preferences ]; then
        /bin/mkdir -p "${USER_HOME}"/Library/Preferences
        /usr/sbin/chown "${USER_UID}" "${USER_HOME}"/Library
        /usr/sbin/chown "${USER_UID}" "${USER_HOME}"/Library/Preferences
      fi
      if [ -d "${USER_HOME}"/Library/Preferences ]; then
        /usr/bin/defaults write "${USER_HOME}"/Library/Preferences/com.apple.SetupAssistant DidSeeCloudSetup -bool TRUE
        /usr/bin/defaults write "${USER_HOME}"/Library/Preferences/com.apple.SetupAssistant GestureMovieSeen none
        /usr/bin/defaults write "${USER_HOME}"/Library/Preferences/com.apple.SetupAssistant LastSeenCloudProductVersion "${sw_vers}"
        /usr/bin/defaults write "${USER_HOME}"/Library/Preferences/com.apple.SetupAssistant LastSeenBuddyBuildVersion "${sw_build}"
        /usr/bin/defaults write "${USER_HOME}"/Library/Preferences/com.apple.SetupAssistant DidSeeSiriSetup -bool TRUE
        /usr/sbin/chown "${USER_UID}" "${USER_HOME}"/Library/Preferences/com.apple.SetupAssistant.plist
      fi
    fi
  done
fi

exit 0

 

Posted in AppleTagged iCloud, login, siri

simple HTML page redirection

Posted on May 15, 2017 by vrpc

Create page index.html (or which ever is your server default page to be loaded when you access a folder)

type:

<meta http-equiv=”refresh” content=”0;URL=’http://domain.com/page-to-be-redirected-to'” />

this way when someone opens domain.com/old-location will be redirected to domain.com/page-to-be-redirected-to

 

 

Posted in Internet, ServersTagged fixit, html

Grant printer admin rights on a mac to domain users

Posted on May 9, 2017 by vrpc

allow administration of printers by domain users:

/usr/sbin/dseditgroup -o edit -n /Local/Default -a ‘Domain Users’ -t group _lpadmin

 

If not part of domain you can grant printer admin rights to everyone:

/usr/sbin/dseditgroup -o edit -n /Local/Default -a everyone -t group _lpadmin

 

Posted in AppleTagged admin rights, printer

Free backup software for windows “Veeam Endpoint Backup FREE”

Posted on May 4, 2017 - May 4, 2017 by vrpc

Veeam Endpoint Backup FREE

There are many options for desktop backup solution if you have windows 10 computer.

You can use build in file history features or classic windows 7 style backup.

It is important to have a backup and the Microsoft included solutions will work fine as long as they are setup.

If you are looking for something with more features and easy setup look at free backup solution from VEEAM.

Here is the link: https://www.veeam.com/endpoint-backup-free.html

Short list of some of the important features:

  1. You can create recovery boot disk or USB flash drive
  2. Choose bare-metal, volume or file level backup.
  3. Schedule recurring backup (Initial backup is full and then incremental)
  4. New feature to eject USB backup hard drive after successful backup to protect from ransomware CryptoLocker.
  5. Set it and forget it 🙂

There are many reasons to have a backup so please go and do it! 🙂

Posted in Tools, WindowsTagged backup, ransomware, tools

Phishing attack threat reminder!

Posted on May 3, 2017 by vrpc

Here is a good article about phishing attacks.

They are always a great threat and it is best to trust no one and carefully examine links in your emails.

http://fortune.com/2017/05/03/google-docs-scam/

Posted in InternetTagged hacking, phishing

Disable spellcheck word 2016

Posted on May 2, 2017 - May 4, 2017 by vrpc

Here is a solution on how to disable spellcheck in word 2016 using group policy:

 

 

reference: http://www.edugeek.net/forums/windows/181129-disable-spellcheck-word-2016-a.html

Additionally we create special domain user which is blocked at the firewall level from internet content.

Posted in WindowsTagged Active Directory, Group Policy, Office 2016

Posts navigation

Older posts
Newer posts

Categories

Recent Posts

  • Fix Core Isolation Turned off on Windows 11
  • ADSelfService GINA Mac Uninstall
  • TLS 1.0
  • Add mac computer to MDM server after initial setup
  • MX-100 1:many NAT not working as expected

Tags

64K AD apple apps backup BOOT chromebook DEP DeployStudio driver DVD EMS exchange 2010 Exchange 2016 Exhange 2010 export FileVault Firefox Firewall fixit G-Suite Google+ Group Policy iphone jailbreak JAMF Linux MAC management error MDM Meraki Mojave Outlook 2016 parental control printer PXE Server Splashtop terminal updates VEEAM vmware WiFi windows 10 windows update 1803

RSS iClarified – Apple News and Tutorials

  • Apple Shares Official Trailer for 'Star City' Series Set in the 'For All Mankind' World [Video]
  • OpenAI Launches GPT-5.5 With Major Gains in Agentic Coding and Computer Use
  • Apple Highlights iPhone and Apple Watch Health Tracking in New Ad [Video]
  • iPhone Ultra Dummy Compared to iPad mini and iPhone 17 Pro Max
  • Leaked iPhone 18 Pro Max Dummies Show Noticeably Thicker Camera Bump
  • Tim Cook Calls Apple Maps His 'First Really Big Mistake,' Says He's Proud of Apple Watch
  • Google Confirms Gemini Will Help Power Apple's More Personalized Siri [Video]

RSS BBC News

  • Biobank data incident caused by 'a few bad apples', boss says April 24, 2026
    Professor Sir Rory Collins said he was "angry" and "upset" about the incident, as both the bank's boss and a participant.
  • Meta to cut one in 10 jobs after spending billions on AI April 24, 2026
    The cuts, which employees had been expecting for weeks, will be Meta's largest layoff since 2023.
  • White House memo claims mass AI theft by Chinese firms April 24, 2026
    A memo from Michael Kratsios says firms, mainly in China, are wrongfully distilling US AI models.
  • From scientist to silk farmer: India's silk industry renewal April 23, 2026
    Silk production is an increasingly high-tech business in India.
  • UK Biobank health data listed for sale in China, government confirms April 23, 2026
    The government said medical data of 500,000 people was affected but no personally identifiable information had been made available.
  • Xbox cuts prices for Game Pass but ends day-one Call of Duty access April 22, 2026
    New Call of Duty games will be added to the subscription service "about a year" after release, Microsoft said.
  • Anthropic investigating claim of unauthorised access to Mythos AI tool April 22, 2026
    The AI company has said the model is too dangerous to release publicly because of its hacking capabilities.
  • UK gaming icon Peter Molyneux on AI, his final creation and a changing industry April 21, 2026
    The creator of iconic series such as Fable says Masters of Albion will be the last game he makes.
  • Meta to track workers' clicks and keystrokes to train AI April 21, 2026
    The firm will take data from the way employees work for its artificial intelligence models.
  • Tech Life April 21, 2026
    How to say goodbye and pay tribute to a loved one - with a hologram.
Proudly powered by WordPress | Theme: micro, developed by DevriX.
 

Loading Comments...