Friday, December 23, 2016

NetApp Certified Data Administrator, ONTAP

Buenos días!
comentaros de mi nueva certificación en NetApp.
Por este año ya lo dejo, pero en breve espero tener otra!

Felices Fiestas y Próspero Año Nuevo!

Thursday, November 10, 2016

How to reset the counter on Machine Creation Services on our Citrix Platform

SOLUTION : 

1. Get-AcctIdentityPool to get the identity pool name 

2. To change the "start count" to the number you want in this example the startcount will change to X 
New-AcctAdAccount -IdentityPoolName "%IdentityPoolName%" -Count 1 -StartCount X where X is the number do you need to start

Tuesday, October 11, 2016

Citrix Certified Associate - Virtualization (CCA - V) - Managing Citrix XenDesktop 7.6 Solutions

Nueva titulación superada! 1Y0-201 - Managing Citrix XenDesktop 7.6 Solutions

Thursday, March 31, 2016

HOW TO Configure same Bookmark for all users logged in a Windows Server

I use ADM & ADMX templates for Google Chrome in my Windows.
To download ADM or ADMX templates: https://support.google.com/chrome/a/answer/187202?hl=es
and to put BookMarks follow this guide https://www.chromium.org/administrators/complex-policies-on-windows but this is an example from below link:

[ { "name": "ASA 5505-X", "url": "https://192.168.30.200/" },{ "name": "PALO ALTO 2050", "url": "https://192.168.30.201/" },{ "name": "Fortigate 60D", "url": "https://192.168.30.202/" },{ "name": "WLC 2500", "url": "https://192.168.42.100/" },{ "name": "MX64", "url": "http://192.168.42.220/" },{ "name": "MS220-8P", "url": "https://192.168.42.221/" },{ "name": "MR32", "url": "https://192.168.42.222/" },{ "name": "MR26", "url": "http://192.168.42.223/" },{ "name": "CISCO ISE", "url": "https://192.168.42.210/" },{ "name": "CISCO PRIME", "url": "https://192.168.42.211/" },{ "name": "OPENVAS", "url": "https://192.168.42.230/login/login.html" }]

The next image show you how to configure Local Computer Policy with Google Chrome ADM


Here I enable Bookmark Bar


And final result



Thanks a lot !!

Thursday, November 12, 2015

HOW TO - Install Hyper-V over vmware ESXi

Yes, it's possible.
When you try to install Hyper-V role in a VM running Windows Server 2012 R2 over VMWARE you will have this error.


To solve it :
- You need to turn off your VM Windows Server 2012 R2
- Browse DataStore and download file *.vmx from your VM Windows Server 2012 R2
- Edit the file with notepad and add the next lines

hypervisor.cpuid.v0 = "FALSE"
mce.enable = "TRUE"
vhv.enable = "TRUE"

The first line solve the previous error and all other lines, solve this error:


Now, you need to modify line guestOS = "ServerOSname" to guestOS = "winhyperv"

Once modified the file, upload it to the same MV and edit settings to change processor type:


Change to Automatic to Intel VT-x/AMD-V ...
Clic ok and run VM and try install hyper-V role.


I hope to help you.


Wednesday, August 19, 2015

How to install an HP branded Windows OS as a virtual server

Hi!
If you try to install Windows with ROK licence (Reseller Option Kit) on top of a hypervisor (Virtual scenaario), after loading, the installatios shows you this error:



This error is because Windows Server does not recognize the "hardware" as a Proliant server.

To solve this problem:

VMWARE
After creating a VM, with the VM powered off, go to Edit Settings / Options / General and select "Configuration Parameters".
Add a new row with this name smbios.reflecthost and with this value TRUE and try again . ;)

HYPER-V
The trick for Hyper-V environments is the addition of a registry key to the VM.
– Execute the following command from the command prompt if the guest operating system is HP-branded Windows Server® 2008 R2: Reg Add “HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Virtualization” /v BiosLockString /t REG_SZ /d “Hewlett-Packard                 ”
NOTE: In the following command line after the word “Hewlett-Packard” there are 17 blank spaces before the quotation mark that must be entered as part of the command.
– Execute the following command from the command prompt if the guest operating system is HP-branded Windows Server 2012: Reg Add “HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Virtualization” /v BiosLockString /t REG_SZ /d “HP                              ”
NOTE: In the following command line after the word “HP” there are 30 blank spaces before the quotation mark that must be entered as part of the command.