Windows PowerShell: New-ItemProperty HKLM:SystemCurrentControlSetControlLsa -Name "DisableLoopbackCheck" -Value "1" -PropertyType dword
Etiqueta: server
Donde esta el fichero HOST en Windows Server 2016
El fichero de hosts sigue estando en la misma ruta, solo que la carpeta "etc" ya no es visible, pero podemos acceder igualmente escribiendo la ruta. C:WindowsSystem32driversetc
¿Qué versión de SharePoint tengo instalada?
Para saber qué versión de SharePoint tenemos instalada en nuestro servidor tan solo debemos ir a: 1. Central Administration / Administración Central 2. Upgrade and Migration / Actualización y migración 3. Check product and path installation status / Verificar el estado de la instalación de productos y revisiones. Aquí veremos al detalle lo …
Windows Server 2012: Turn Off Windows Firewall in 5 steps
1. Go to Control Panel and System and Security 2. Go to Windows Firewall 3. From the left menu, select Turn Windows Firewall on or off 4. Check all options with Turn off Windows Firewall (not recommended) 5. All options should be red now
Windows Server 2012: Add Administrators to Active Directory in 6 Steps
1. Go to Administrative Tools 2. Open Active Directory Users and Computers 3. Go to Builtin and you will see some Groups, like Administrators 4. Double-click on Administrators group 5. Go to Members Tab and click on Add... to insert users as administrators 6. You will see new users in the Members List
Windows Server 2012: Configure Active Directory in 14 Steps
1. Add Role from Server Manager 2. Role-based or feature-based installation 3. Select a server from the server pool 4. Select Active Directory Domain Services and DNS Server. 5. Once installed, from Notifications Menu, select Promote this server to a domain controller 6. Add a new Forest 7. Write a password 8. Next 9. Check …
Sigue leyendo Windows Server 2012: Configure Active Directory in 14 Steps
Password Requirements for Windows Server Active Directory
Basically: Password must not contain the user's entire Account Name. Password must contain an Uppercase character, a Lowercase character and a number (0 through 9). More info: http://technet.microsoft.com/en-us/library/cc786468%28v=ws.10%29.aspx
SharePoint 2013: Configure Search Application Topology
You can configure your Search Application Topology through your servers and manage all its parts separately, or (like in my case) you only need to configure it all in one server. Using PowerShell I've only need to run this following commands:1. Get the Search Service Instance of my server into a variable (The second command …
Sigue leyendo SharePoint 2013: Configure Search Application Topology
Start Local HTTP Server in MacOS X with One Simple Command
You can start a local web server to try your web site with one single command. Open Terminal, navigate to the folder that you want to use as a local server and type one of the following commands: To open with browser typing: http://localhost:8000 python -m SimpleHTTPServer If you don't want to write the port …
Sigue leyendo Start Local HTTP Server in MacOS X with One Simple Command
Project Professional: Get Current Project Resource Rates with VBA
You can obtain the Current Project Resource Rates by the following code in Visual Basic for Applications: Public Sub UpdateCostRates() Dim ProjectName As Project Set ProjectName = ActiveProject Dim N As Assignment Dim Names As String For Each T In ProjectName.Tasks For Each I In T.Resources For Each P In I.Assignments Set N = P …
Sigue leyendo Project Professional: Get Current Project Resource Rates with VBA