Skip to content

VRPC.COM

Virtual Reality Powered Computer

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

Author: vrpc

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

  • Weak iPhone Air Sales Push Rivals to Rethink Ultra-Thin Phones
  • Apple Accuses India Antitrust Watchdog of Overstepping Authority in App Store Case
  • Apple Warns Mac mini, Mac Studio, and MacBook Neo Shortages Could Last for Months
  • Apple's Next CEO John Ternus Calls Roadmap 'Incredible' on Earnings Call
  • Apple Reports Q2 FY26 Earnings: $111.2 Billion in Revenue, $29.6 Billion in Net Income [Chart]
  • Porsche Brings Back Iconic Apple Rainbow Livery for Laguna Seca Race
  • Satellite Connectivity to Reach 46% of Smartphones by 2030, Apple Leads Early Adoption

RSS BBC News

  • Spotify adds 'Verified' badges to distinguish human artists from AI May 1, 2026
    The music streaming platform will review criteria such as artists' live dates and social media presence.
  • Apple says iPhone 17 'most popular ever' as sales soar May 1, 2026
    The record results come as boss Tim Cook is preparing to bow out after 15 years at the helm.
  • Will AI lead to more accurate opinion polls? April 30, 2026
    It's cheaper and faster to collect people's opinions using AI, but will it make polls more accurate?
  • Twitch streamer hit by car live on camera - 'It felt like slow motion' April 30, 2026
    Isaiah Thomas, known as hmblzayy, was walking a 3,000-mile challenge when he was hit
  • OpenAI tells ChatGPT models to stop talking about goblins April 30, 2026
    The AI firm said that unlike previous model bugs, the issue "crept in subtly".
  • Meta in row after workers who say they saw smart glasses users having sex lose jobs April 30, 2026
    Meta and its subcontractor disagree over why over 1000 Kenya-based workers were made redundant.
  • Musk accuses OpenAI lawyer of trying to 'trick' him in combative testimony April 29, 2026
    Elon Musk was cross-examined on the third day of the trial over his lawsuit against Sam Altman and OpenAI.
  • Why friendly AI chatbots might be less trustworthy April 29, 2026
    Researchers found adjusting AI systems to be more warm and friendly to users would result in an "accuracy trade-off".
  • Musk accuses Altman of stealing a charity as courtroom battle begins April 29, 2026
    The case over OpenAI's history and public commitments could have major implications for the future of AI.
  • Tech Life April 28, 2026
    Workers train AI to identify everyday objects by labelling items in photos and videos.
Proudly powered by WordPress | Theme: micro, developed by DevriX.
 

Loading Comments...