OpenNebula - Feature #2395 Provide windows guest contextualization scripts

Size: px
Start display at page:

Download "OpenNebula - Feature #2395 Provide windows guest contextualization scripts"

Transcription

1 OpenNebula - Feature #2395 Provide windows guest contextualization scripts 10/21/ :31 AM - Tino Vázquez Status: Closed Start date: 10/21/2013 Priority: Normal Due date: Assignee: % Done: 0% Category: Context Estimated time: 0.00 hour Target version: Release 4.8 Resolution: fixed Pull request: Description Provide means to contextualize (at least networking) Windows based virtual machines. The best way would be to base the contextualization scripts on [1]. Comments in the users list by Martin Alfke -- We only assign IP address, hostname and enable RDP Hostname is set as contextualisation variable: HOSTNAME = $name (We use the VM name as fqdn). We now only miss setting the DNS according to contextualisation (we need to split the variable into an array). This is the diff to the one_context.ps1 file: --- one-context_orig.ps :43: one-contextwin8.ps :35: ,14 ##### DETI/IEETA Universidade de Aveiro 2011 ##### ################################################################# -Set-ExecutionPolicy unrestricted -force # not needed if already done once on the VM +Set-ExecutionPolicy Unrestricted -force # not needed if already done once on the VM [string]$computername = "$env:computername" [string]$connectionstring = "WinNT://$computerName" function getcontext($file) { $context = { switch -regex -file $file { - '(.+)="(.+)"' { + "(.+)='(.+)'" { $name,$value = $matches[1..2] $context[$name] = -77,13 function configurenetwork($context) { $Nics = Get-WMIObject Win32_NetworkAdapterConfiguration where {$_.IPEnabled -eq "TRUE" -and ($_.MACAddress) foreach ($nic in $Nics) { - [String]$mac = $nic.macaddress - [String]$ip = getip($mac) - [String]$gw = getgateway($mac) + [String]$ip = $context["eth0_ip"] + [String]$gw = $context["eth0_gateway"] + [String]$mask = $context["eth0_mask"] 12/27/2018 1/6

2 $nic.releasedhcplease() - $nic.enablestatic($ip, " ") + $nic.enablestatic($ip, $mask) $nic.setgateways($gw) - $DNSServers = " ", " " + $DNSServers = " ", " " + # $DNSServers = $context["eth0_dns"] $nic.setdnsserversearchorder($dnsservers) $nic.setdynamicdnsregistration("true") $nic.setwinsserver($dnsservers[0], -91,8 function renamecomputer($context) { - $ComputerInfo = Get-WmiObject Class Win32_ComputerSystem $ComputerInfo.rename($context["HOSTNAME"]) + $fullname = $context["hostname"] + $computername = $fullname.split(".")[0] + $computerinfo = Get-WmiObject -Class Win32_ComputerSystem + $computerinfo.rename($computername) function enableremotedesktop() -- Related issues: Duplicated by Feature # 2049: Better Windows contextualization scripts Closed 05/15/2013 History #1-11/07/ :01 AM - Martin Alfke These are all the scripts we are using: 1. Windows Autostart script: SetupComplete.cmd cscript //b e:/startup.vbs 2. Wrapper Script for PowerShell call with super privileges: startup.vbs Set objshell = CreateObject("Wscript.Shell") objshell.run("powershell -NonInteractive -NoProfile -NoLogo -ExecutionPolicy Unrestricted -command E:\one-context.ps1") Dim objfso, objfolder Set objfso = CreateObject("Scripting.FileSystemObject") Set objfolder = objfso.createfolder("c:\executedvbscript") 3. PowerShell Script which actually does the work: one-context.ps1 ################################################################# ##### Windows Powershell Script to configure OpenNebula VMs ##### ##### Created by andremonteiro@ua.pt and tsbatista@ua.pt ##### ##### DETI/IEETA Universidade de Aveiro 2011 ##### 12/27/2018 2/6

3 ################################################################# # adopted to Win7/8 - Martin Alfke <tuxmea@gmail.com Set-ExecutionPolicy Unrestricted -force # not needed if already done once on the VM [string]$computername = "$env:computername" [string]$connectionstring = "WinNT://$computerName" function getcontext($file) { $context switch -regex -file $file { # proper regexp for context.sh file "(.+)='(.+)'" { $name,$value = $matches[1..2] $context[$name] = $value return $context function addlocaluser($context) { # Create new user $username = $context["username"] $ADSI = [adsi]$connectionstring if(!([adsi]::exists("winnt://$computername/$username"))) { $user = $ADSI.Create("user",$username) $user.setpassword($context["password"]) $user.setinfo() # Already exists, change password else{ $admin = [ADSI]"WinNT://$env:computername/$username" $admin.psbase.invoke("setpassword", $context["password"]) # Set Password to Never Expires $admin = [ADSI]"WinNT://$env:computername/$username" $admin.userflags.value = $admin.userflags.value -bor 0x10000 $admin.commitchanges() # Add user to local Administrators $groups = "Administrators", "Administradores" foreach ($grp in $groups) { if([adsi]::exists("winnt://$computername/$grp,group")) { $group = [ADSI] "WinNT://$computerName/$grp,group" if([adsi]::exists("winnt://$computername/$username")) { $group.add("winnt://$computername/$username") 12/27/2018 3/6

4 function getip($mac) { $mac = $mac.replace("-",":") $octet = $mac.split(":") [String] $ip = "" $ip += [convert]::toint32($octet[2],16) $ip += "."+[convert]::toint32($octet[3],16) $ip += "."+[convert]::toint32($octet[4],16) $ip += "."+[convert]::toint32($octet[5],16) return $ip function getgateway($mac) { $octet = $mac.split(":") [String] $ip = "" $ip += [convert]::toint32($octet[2],16) $ip += "."+[convert]::toint32($octet[3],16) $ip += "."+[convert]::toint32($octet[4],16) $ip += ".254" return $ip function configurenetwork($context) { $Nics = Get-WMIObject Win32_NetworkAdapterConfiguration where {$_.IPEnabled -eq "TRUE" -and ($_.MACAddress) foreach ($nic in $Nics) { [String]$ip = $context["eth0_ip"] [String]$gw = $context["eth0_gateway"] [String]$mask = $context["eth0_mask"] $nic.releasedhcplease() $nic.enablestatic($ip, $mask) $nic.setgateways($gw) $DNSServer = $context["eth0_dns"] $DNSServers = $DNSServer.Split(" ") $nic.setdnsserversearchorder($dnsservers) $nic.setdynamicdnsregistration("true") $nic.setwinsserver($dnsservers[0], $DNSServers[1]) function renamecomputer($context) { $fullname = $context["hostname"] $computername = $fullname.split(".")[0] $computerinfo = Get-WmiObject -Class Win32_ComputerSystem $computerinfo.rename($computername) function enableremotedesktop() { # Windows 7 only - add firewall exception for RDP netsh advfirewall Firewall set rule group="remote Desktop" new enable=yes # Enable RDP $Terminal = (Get-WmiObject -Class "Win32_TerminalServiceSetting" -Namespace root\cimv2\terminalservices).setallowtsconnections(1) return $Terminal 12/27/2018 4/6

5 function enableping() { #Create firewall manager object $FWM=new-object -com hnetcfg.fwmgr # Get current profile $pro=$fwm.localpolicy.currentprofile $pro.icmpsettings.allowinboundechorequest=$true function addreadme($context) { $username = $context["username"] Copy-Item E:\README.txt C:\Users\$username\Desktop\README.txt # If folder context doesn't exist create it if (-not (Test-Path "c:\context\")) { New-Item "C:\context\" -type directory # Execute script if( -not(test-path "c:\context\contextualized") -and (Test-Path "E:\context.sh")) { $context $context = getcontext('e:\context.sh') # addlocaluser($context) renamecomputer($context) enableremotedesktop enableping # addreadme($context) # Start-Sleep -s 30 configurenetwork($context) echo "contextualized" Out-File ("c:\context\contextualized") echo $context Out-File ("c:\context\contextvar") restart-computer -force ## Restart a second time to ensure network connection elseif( -not(test-path "c:\context\contextualizednetwork") -and (Test-Path "E:\context.sh")) { $context $context = getcontext('e:\context.sh') configurenetwork($context) #addreadme($context) echo "contextualizednetwork:" Out-File ("c:\context\contextualizednetwork") $context["eth0_ip"] Out-File ("c:\context\contextnetworkvar") #2-12/28/ :59 PM - Ruben S. Montero 12/27/2018 5/6

6 - Duplicated by Feature #2049: Better Windows contextualization scripts added #3-02/25/ :53 PM - Jaime Melis - Target version changed from Release 4.6 to Release 4.8 #4-06/24/ :08 AM - Ruben S. Montero - Status changed from New to Closed - Resolution set to fixed 12/27/2018 6/6

Executing PowerShell Agent Commands

Executing PowerShell Agent Commands This chapter contains the following sections: Cisco UCS Director Orchestrator Workflow and PowerShell Command, page 1 Execute PowerShell Command Task, page 2 Execute Native PowerShell Command Task, page

More information

Executing PowerShell Agent Commands

Executing PowerShell Agent Commands This chapter contains the following sections: Cisco UCS Director Orchestrator Workflow and PowerShell Command, page 1 Execute PowerShell Command Task, page 2 Execute Native PowerShell Command Task, page

More information

Govindaraj Rangan Technology Strategist Microsoft India

Govindaraj Rangan Technology Strategist Microsoft India Govindaraj Rangan Technology Strategist Microsoft India Agenda Introduction to Windows Powershell Scripting with Windows Powershell Working with Objects (WMI, COM,.NET) Scripting Best Practices Agenda

More information

Computer Password Remote

Computer Password Remote How To Change Ip Manually Windows 7 Computer Password Remote Normally, a changing IP address does not cause any problem until you try to connect Connect to your computer via Remote Desktop Connection and

More information

Server based Networking & Security IS375 Group 5 Project. The purpose of this project is to put into practice what we learned in classroom.

Server based Networking & Security IS375 Group 5 Project. The purpose of this project is to put into practice what we learned in classroom. Server based Networking & Security IS375 Group 5 Project The purpose of this project is to put into practice what we learned in classroom. Beatris M., Zim Y., Lawton P., Mike S. 12/13/2011 Document: Steps

More information

Implementing Hyper-V. Lab Exercises FINAL

Implementing Hyper-V. Lab Exercises FINAL Implementing Hyper-V Lab Exercises FINAL Released: 6 August 2008 Disclaimer - Terms of Use Microsoft Confidential - For Internal Use Only 2008 Microsoft Corporation. All rights reserved. Information in

More information

Unidesk 2.0 Script to Increase UEP size

Unidesk 2.0 Script to Increase UEP size Unidesk 2.0 Script to Increase UEP size Summary When creating a desktop the size of the Personalization Layer (UEP) is defined in GB for the desktop. There are two vmdk files that make up the UEP both

More information

User Environment Variables in App-V 5.0 with SP1, SP2 and SP2 Hotfix 4

User Environment Variables in App-V 5.0 with SP1, SP2 and SP2 Hotfix 4 User Environment Variables in App-V 5.0 with SP1, SP2 and SP2 Hotfix 4 Dan Gough wrote an excellent article named: User Environment Variables in App-V 5 Scripts. To summarize: it is about the fact that

More information

How to Configure Impersonation for OneDrive for Business Data Sources

How to Configure Impersonation for OneDrive for Business Data Sources How to Configure Impersonation for OneDrive for Business Data Sources Before Getting Started Download and install the SharePoint Online Management Shell from the Microsoft Windows Download Center to a

More information

Windows. Not just for houses

Windows. Not just for houses Windows Not just for houses Windows 110 Windows Server Essentially a jacked up windows 8 box Still GUI based Still makes no sense No start menu :( (Install classic shell)... trust me... Windows Server

More information

Powershell: Introduction and Practical Uses. Presentation URL:

Powershell: Introduction and Practical Uses. Presentation URL: Powershell: Introduction and Practical Uses Presentation URL: http://bit.ly/2ick4pt HELLO! I am Chris Wieringa CS Lab Manager for Calvin College cwieri39@calvin.edu 2 1. Goals What we will cover today...

More information

When Microsoft releases new updates to firmware and drivers, the firmware and driver pack is updated for all Surface models.

When Microsoft releases new updates to firmware and drivers, the firmware and driver pack is updated for all Surface models. Managing Surface Devices in the Enterprise Firmware/Driver Management with System Center Configuration Manager 2012 This article describes how to deploy enterprise-managed firmware and drivers to Surface

More information

Monitoring Windows Systems with WMI

Monitoring Windows Systems with WMI Monitoring Windows Systems with WMI ScienceLogic version 8.8.1 Table of Contents Introduction 4 Monitoring Windows Devices in the ScienceLogic Platform 5 What is SNMP? 5 What is WMI? 5 PowerPacks 5 Configuring

More information

Prerequisites... 2 Deploy a Single Backup Policy to Your Network... 3 Batch Script... 3

Prerequisites... 2 Deploy a Single Backup Policy to Your Network... 3 Batch Script... 3 Prerequisites... 2 Deploy a Single Backup Policy to Your Network... 3 Batch Script... 3 PowerShell Script... 5 Deploy Multiple Backup Policies to Your Network... 7 Batch Script... 7 PowerShell Script...

More information

Windows PowerShell. The next generation command line scripting

Windows PowerShell. The next generation command line scripting The next generation command line scripting Presented by Bob McCoy, CISSP/ISSAP, MCSE Microsoft Services Cyber Security Forum 07/18/2007 Windows PowerShell cmd.exe and command.com Lack of scriptable functionality

More information

Essentials Wizard Help - Configure Office 365

Essentials Wizard Help - Configure Office 365 For a list of Essentials options and setup instructions, see Step 1 - Set Up Essentials for Office 36 PowerShell Requirements The Essentials Wizard utilizes PowerShell scripts to quickly configure and

More information

predefined elements (CI)

predefined elements (CI) 1 VMware Name 1.1 VMware Scans Scan Date, API Type, API Version, Name, Locale Build Number, Version, Service Name, OS Type, Vendor, Version, Build, MOB Path 1.1.1 VMware Folders Name, Identifier, MOB Path

More information

Click Studios. Passwordstate. Password Discovery, Reset and Validation. Requirements

Click Studios. Passwordstate. Password Discovery, Reset and Validation. Requirements Passwordstate Password Discovery, Reset and Validation Requirements This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise

More information

Iron Scripter 2018: Prequel 6

Iron Scripter 2018: Prequel 6 Iron Scripter 2018: Prequel 6 The Puzzle Greetings Iron Scripters. You re past the half way point on your journey to Iron Scripter when you complete this puzzle. This week s challenge is very simple on

More information

8.9.2 Lab: Configure an Ethernet NIC to use DHCP in Windows Vista

8.9.2 Lab: Configure an Ethernet NIC to use DHCP in Windows Vista 8.9.2 Lab: Configure an Ethernet NIC to use DHCP in Windows Vista Introduction If Vista is not available in your classroom, you may complete this lab by viewing the figures in this document. Print and

More information

LCC Default Environtment Menu (lccdemenu) Manual

LCC Default Environtment Menu (lccdemenu) Manual Page 1 of 6: lccdemenu-manual.docx LCC Default Environtment Menu (lccdemenu) Manual Contents Description... 2 Installing... 2 Pre-requisites... 2 One Time Per Server... 2 One Time Per User... 2 Using...

More information

Set Up VPN Access on Your AHC Supported Device

Set Up VPN Access on Your AHC Supported Device Set Up VPN Access on Your AHC Supported Device Choose your operating system: Windows 7 Windows 8 Windows 10 AHC Device- Windows 7 *Finding my IP Address for a remote connection Before connecting to AnyConnect,

More information

Using the SSM Administration Console

Using the SSM Administration Console CHAPTER 6 Your user role controls whether you can access the SSM Administration Console. The following information is included in this section: SSM Administration Console Overview, page 6-1 Launching the

More information

Essential PowerShell Survival Skills

Essential PowerShell Survival Skills Essential PowerShell Survival Skills Shawn Bolan Microsoft Certified Trainer, VMware Certified Instructor, PRINCE2 Instructor New Horizons of Nebraska Essential PowerShell Survival Skills Welcome! Thank

More information

Install and Manage Windows Nano Server 2016 Step by Step

Install and Manage Windows Nano Server 2016 Step by Step Complete Lab (V2.0) Ahmed Abdelwahed Microsoft Certified Trainer Ahmed_abdulwahed@outlook.com Table of Contents Lab Objective... 3 Windows Nano Server 2016 overview... 3 Current infrastructure environment...

More information

INSTALLATION GUIDE. Virtual Appliance for Inspector and Reporter 9/20/2018 1:32 PM

INSTALLATION GUIDE. Virtual Appliance for Inspector and Reporter 9/20/2018 1:32 PM INSTALLATION GUIDE Virtual Appliance for Inspector and Reporter 9/20/2018 1:32 PM Network Detective Virtual Appliance for Inspector and Reporter Installation Guide Contents Purpose of this Guide 4 RapidFire

More information

Set Up VPN Access on Your Personal Device

Set Up VPN Access on Your Personal Device Set Up VPN Access on Your Personal Device Choose your operating system: Windows 7 Windows 8 Windows 10 Personal Device- Windows 7 *Finding my IP Address for a remote connection Before connecting to AnyConnect,

More information

Windows 7 Remote Desktop

Windows 7 Remote Desktop Windows Firewall Service Is Not Running Windows 7 Remote Desktop Oct 19, 2014. Windows 7 Home Premium with patch to allow incoming RDP session has worked fine The update is not a security update so it

More information

Turn On Windows Firewall Manually Windows 7 Group Policy Server 2003

Turn On Windows Firewall Manually Windows 7 Group Policy Server 2003 Turn On Windows Firewall Manually Windows 7 Group Policy Server 2003 Windows Server 2003 with SP1: The Windows Firewall is not enabled by default. Group Policy editor (Gpedit.msc) or a script to enable

More information

McAfee Exploit Prevention Content Release Notes New Windows Signatures

McAfee Exploit Prevention Content Release Notes New Windows Signatures McAfee Exploit Prevention Content 8966 Release Notes 2019-02-12 Content package version for - McAfee Host Intrusion Prevention: 8.0.0.8966 McAfee Endpoint Security Exploit Prevention: 10.6.0.8966 Below

More information

edp 8.2 Info Sheet - Integrating the ediscovery Platform 8.2 & Enterprise Vault

edp 8.2 Info Sheet - Integrating the ediscovery Platform 8.2 & Enterprise Vault edp 8.2 Info Sheet - Integrating the ediscovery Platform 8.2 & Enterprise Vault 12.0.1 Date: December 2017 Author: Technical Field Enablement (II-TEC@veritas.com) Applies to: ediscovery Platform 8.x and

More information

Click Studios. Passwordstate. Password Discovery, Reset and Validation. Requirements

Click Studios. Passwordstate. Password Discovery, Reset and Validation. Requirements Passwordstate Password Discovery, Reset and Validation Requirements This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise

More information

Network Administration Test 6

Network Administration Test 6 Name: Date: Quiz 6: VPN, RRAS, DHCP, Virus Protection, RAID, Setting up Groups, Print and File Servers, DNS, ICS, Subnetting, Security Policies, Predefined Groups and Adding Administrators to a Windows

More information

How To Set New Password In Windows 7 Using Cmd From Guest Account

How To Set New Password In Windows 7 Using Cmd From Guest Account How To Set New Password In Windows 7 Using Cmd From Guest Account shift key 5 times at logon screen,we will get a command prompt with Computer Hacking: I am given admin access to a password protected Windows

More information

UNIT 2 LAB 4: CREATING LOOPING STATEMENTS

UNIT 2 LAB 4: CREATING LOOPING STATEMENTS OVERVIEW In a script, it is often necessary to perform the same operation repeatedly until some condition exists. This could be reading the lines of text in a file or reading input from the keyboard until

More information

New-ADUser -Name -SAMAccountName - GivenName -Surname -DisplayName -UserPrincipalName - Path -ProfilePath

More information

Windows. Not just for houses

Windows. Not just for houses Windows Not just for houses Everyone Uses Windows! (sorry James!) Users Accounts to separate people on a computer Multiple user accounts on a computer Ex) shared family computer Access level can be set

More information

Iron Scripter 2018: Prequel 5 A commentary

Iron Scripter 2018: Prequel 5 A commentary Iron Scripter 218: Prequel 5 A commentary The puzzle Greetings Iron Scripters. You re nearing the half way point on your journey to Iron Scripter This challenge involves working with performance counters.

More information

User Guide NAS 3.0 Adapter (NAS30U2)

User Guide NAS 3.0 Adapter (NAS30U2) T E C H N O L O G I E S User Guide NAS 3.0 Adapter (NAS30U2) www.addonics.com v5.1.11 Technical Support If you need any assistance to get your unit functioning properly, please have your product information

More information

RSA NetWitness Logs. Microsoft Windows. Event Source Log Configuration Guide. Last Modified: Thursday, October 5, 2017

RSA NetWitness Logs. Microsoft Windows. Event Source Log Configuration Guide. Last Modified: Thursday, October 5, 2017 RSA NetWitness Logs Event Source Log Configuration Guide Microsoft Windows Last Modified: Thursday, October 5, 2017 Event Source Product Information: Vendor: Microsoft Event Source: Windows Versions: SNARE

More information

Table of Contents. Installing the AD FS Running the PowerShell Script 16. Troubleshooting log in issues 19

Table of Contents. Installing the AD FS Running the PowerShell Script 16. Troubleshooting log in issues 19 ZOHOCORP Installing and configuring AD FS 2.0 to work with ManageEngine SDP On-Demand Step by Step Guide ManageEngine On-Demand 3/21/2012 Table of Contents Installing the AD FS 2.0 2 Running the PowerShell

More information

Executing Commands through the Execute VM Command Task

Executing Commands through the Execute VM Command Task Executing Commands through the Execute VM Command Task This chapter contains the following sections: Execute VM Command Task, page 1 Execute VM Command Task Examples, page 2 Execute VM Command Task You

More information

Install and Configure Windows Server 2016 Core on Hyper-V Step by Step (V1.1)

Install and Configure Windows Server 2016 Core on Hyper-V Step by Step (V1.1) Install and Configure Windows Server 2016 Core on Hyper-V 2016 Step by Step (V1.1) Ahmed Abdelwahed Microsoft Certified Trainer Ahmed_abdulwahed@outlook.com Contents Lab Scenario... 3 Working with Hyper-V...

More information

Dhcp With Manual Address Windows Server 2008 R2 Vlan

Dhcp With Manual Address Windows Server 2008 R2 Vlan Dhcp With Manual Address Windows Server 2008 R2 Vlan I have set static IP addresses on the Server 2008R2 host and Internet Router. If I allow DHCP to set the IP to 192.168.20.5, I can RDP into and ping

More information

MAC Address Filtering Setup (3G18Wn)

MAC Address Filtering Setup (3G18Wn) MAC Address Filtering Setup (3G18Wn) MAC Address Filtering MAC address filtering refers to the process of allowing (or denying) access to your wireless network based on the hardware address of the device

More information

Remote Process Explorer

Remote Process Explorer Remote Process Explorer Getting Started LizardSystems 2 Table of Contents Introduction 5 Installing Remote Process Explorer 5 Before starting the application 5 Starting the application 6 Main window 7

More information

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions Passwordstate Remote Session Launcher Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise

More information

Part II: PowerShell s Basic Structure and Syntax... 47

Part II: PowerShell s Basic Structure and Syntax... 47 Contents at a Glance Introduction... 1 Part I: Get ting a Bird s-eye View of PowerShell 2... 9 Chapter 1: The Windows PowerShell Rap Sheet...11 Chapter 2: Customizing and Shortcutting the Environment...21

More information

VMware Horizon 7 Administration Training

VMware Horizon 7 Administration Training VMware Horizon 7 Administration Training Course Course Duration : 20 Working Days Class Duration : 3 hours per day Fast Track: - Course duration 10days (Per day 8 hours) Get Fee Details Module 1: Introduction

More information

Nexus 1000v Quickstart with Hyper V Server Configuration Example

Nexus 1000v Quickstart with Hyper V Server Configuration Example Nexus 1000v Quickstart with Hyper V Server Configuration Example Document ID: 116355 Contributed by Chris Brown, Cisco TAC Engineer. Oct 18, 2013 Contents Introduction Prerequisites Requirements Components

More information

Dhcp With Manual Address Windows Server 2008 R2 Vlans

Dhcp With Manual Address Windows Server 2008 R2 Vlans Dhcp With Manual Address Windows Server 2008 R2 Vlans I have set static IP addresses on the Server 2008R2 host and Internet Router. If I allow DHCP to set the IP to 192.168.20.5, I can RDP into and ping

More information

ODBC INSTALLATION Operating System: Windows Bit

ODBC INSTALLATION Operating System: Windows Bit ODBC INSTALLATION Operating System: Windows 10 64-Bit This is documentation that will guide you through installing ODBC on a Windows 10 64-Bit Operating System. It is also VERY IMPORTANT that no one is

More information

Auto Start Analyzer after AppPool Recycle by IIS

Auto Start Analyzer after AppPool Recycle by IIS Auto Start Analyzer after AppPool Recycle by IIS Background It is often sites running on the Internet Information Service (IIS) will get recycled by IIS service at a set interval (nightly for example).

More information

Creating Active Directory Domain Services in Oracle Cloud Infrastructure

Creating Active Directory Domain Services in Oracle Cloud Infrastructure Creating Active Directory Domain Services in Oracle Cloud Infrastructure Quick Start ORACLE WHITE PAPER JANUARY 2019 Disclaimer The following is intended to outline our general product direction. It is

More information

[Pick the date] DS-300 Configuration Guide v 5.7

[Pick the date] DS-300 Configuration Guide v 5.7 DS-300 Version 5.7 Web based configuration Troubleshooting Guide 1. LOGIN SETTINGS By Default, after getting a DHCP IP address from DS-300, open any Internet browser and type in the URL address for Customer

More information

Exchange Server Installation on Windows Server 2019 Core Edition

Exchange Server Installation on Windows Server 2019 Core Edition Exchange Server 2019- Installation on Windows Server 2019 Core Edition Hussain Shakir LinkedIn: https://www.linkedin.com/in/mrhussain Twitter: https://twitter.com/hshakir_ms Blog: http://mstechguru.blogspot.com/

More information

Step 1 - Set Up Essentials for Office 365

Step 1 - Set Up Essentials for Office 365 The standalone Office 365 Standalone Email Security option is available for purchase only through the Barracuda Self-Service Gateway or Barracuda MSP. This article assumes you are deploying Barracuda Services

More information

User Guide for configuration of IPM and XenCenter

User Guide for configuration of IPM and XenCenter User Guide for configuration of IPM and XenCenter Revision History Revision Description By 22 nd June 2011 Created Amita 23 rd June 2011 Updated as per comments from Prashant 3 rd Aug 2011 Updated as per

More information

XenMobile 10 Cluster installation. Here is the task that would be completed in order to implement a XenMobile 10 Cluster.

XenMobile 10 Cluster installation. Here is the task that would be completed in order to implement a XenMobile 10 Cluster. XenMobile 10 Cluster installation Here is the task that would be completed in order to implement a XenMobile 10 Cluster. For this example, running on my lab, I am using XenServer 6.5 SP1 as hypervisor

More information

DSL-G624T. Wireless ADSL Router. If any of the above items is missing, please contact your reseller. This product can be set up using any

DSL-G624T. Wireless ADSL Router. If any of the above items is missing, please contact your reseller. This product can be set up using any This product can be set up using any current web browser, i.e., Internet Explorer 6x or Netscape Navigator 7x. DSL-G624T Wireless ADSL Router Before You Begin 1. If you purchased this Router to share your

More information

29 March 2017 SECURITY SERVER INSTALLATION GUIDE

29 March 2017 SECURITY SERVER INSTALLATION GUIDE 29 March 2017 SECURITY SERVER INSTALLATION GUIDE Contents 1. Introduction... 2 1.1 Assumptions... 2 1.2 Prerequisites... 2 2. Required setups prior the Security Server Installation... 3 1.1 Create domain

More information

Microsoft.Braindumps v by.CONNIE.36q. Exam Code: R2-Update-Fixed-Answers

Microsoft.Braindumps v by.CONNIE.36q. Exam Code: R2-Update-Fixed-Answers Microsoft.Braindumps.70-410.v2014-04-01.by.CONNIE.36q Number: 70-410 Passing Score: 700 Time Limit: 120 min File Version: 20.5 http://www.gratisexam.com/ Exam Code: 70-410-R2-Update-Fixed-Answers Exam

More information

How to detect the CPU and OS Architecture

How to detect the CPU and OS Architecture How to detect the CPU and OS Architecture The client I am working for now, has both XP and Windows 7. XP is 32 bits and Windows 7 is 64 bits. To avoid that I have to make the packages twice, I make both

More information

Deploying Hyper-V with Routing O R A C L E W H I T E P A P E R M A R C H

Deploying Hyper-V with Routing O R A C L E W H I T E P A P E R M A R C H Deploying Hyper-V with Routing O R A C L E W H I T E P A P E R M A R C H 2 0 1 8 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only,

More information

DR2000v (Version 4.0.3) Deployment Guide

DR2000v (Version 4.0.3) Deployment Guide DR2000v (Version 4.0.3) Deployment Guide Table of Contents About the...3 Other information you may need...3 Getting started... 4 Introducing the DR2000v system... 4 Specifications and notes for using the

More information

Static Ip Address Problems Windows 7 Setup. Virtual >>>CLICK HERE<<<

Static Ip Address Problems Windows 7 Setup. Virtual >>>CLICK HERE<<< Static Ip Address Problems Windows 7 Setup Virtual Vm are all 2008r2 with vmxnet3 VM adapter running virtual machine version 8 on Esx 5.5 with I see that the assigned static IP address is marked as duplicate

More information

Research Challenges in Cloud Infrastructures to Provision Virtualized Resources

Research Challenges in Cloud Infrastructures to Provision Virtualized Resources Beyond Amazon: Using and Offering Services in a Cloud Future Internet Assembly Madrid 2008 December 9th, 2008 Research Challenges in Cloud Infrastructures to Provision Virtualized Resources Distributed

More information

Objects for Access Control

Objects for Access Control Objects are reusable components for use in your configuration. You can define and use them in Cisco ASA configurations in the place of inline IP addresses, services, names, and so on. Objects make it easy

More information

WA2592 Applied Data Science and Big Data Analytics. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc.

WA2592 Applied Data Science and Big Data Analytics. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. WA2592 Applied Data Science and Big Data Analytics Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Class Setup...3 Part 2 - Minimum Software Requirements

More information

Using RDP with Azure Linux Virtual Machines

Using RDP with Azure Linux Virtual Machines Using RDP with Azure Linux Virtual Machines 1. Create a Linux Virtual Machine with Azure portal Create SSH key pair 1. Install Ubuntu Bash shell by downloading and running bash.exe file as administrator.

More information

Vendor: Microsoft. Exam Code: Exam Name: Installing and Configuring Windows Server Version: Demo

Vendor: Microsoft. Exam Code: Exam Name: Installing and Configuring Windows Server Version: Demo Vendor: Microsoft Exam Code: 70-410 Exam Name: Installing and Configuring Windows Server 2012 Version: Demo DEMO QUESTION 1 You have a server named Core1 that has a Server Core Installation of Windows

More information

INF204x Module 1 Lab 1: Configuring and Troubleshooting Networking Part 1

INF204x Module 1 Lab 1: Configuring and Troubleshooting Networking Part 1 INF204x Module 1 Lab 1: Configuring and Troubleshooting Networking Part 1 Estimated Time: 90 minutes Your organization plans to implement IPv6 in their existing Active Directory environment including Windows

More information

Configuring Virtual Blades

Configuring Virtual Blades CHAPTER 14 This chapter describes how to configure virtual blades, which are computer emulators that reside in a WAE or WAVE device. A virtual blade allows you to allocate WAE system resources for use

More information

TROUBLESHOOTING GUIDE. Backup and Recovery for Nutanix

TROUBLESHOOTING GUIDE. Backup and Recovery for Nutanix TROUBLESHOOTING GUIDE Backup and Recovery for Nutanix Version: 1.5.2 Product release date: October 2017 Document release date: October 2017 Legal notices Copyright notice 2017 Comtrade Software. All rights

More information

Windows Server 2003 { Domain Controller Installation and Configuration}

Windows Server 2003 { Domain Controller Installation and Configuration} Windows Server 2003 { Domain Controller Installation and } Benedikt Riedel MCSE + Messaging www.go-unified.com www.siemens.com/open Benedikt.riedel@siemens.com Start up the prepared Windows Server 2003

More information

Packet Tracer - Using Traceroute to Discover the Network (Instructor Version)

Packet Tracer - Using Traceroute to Discover the Network (Instructor Version) (Instructor Version) Instructor Note: Red font color or Gray highlights indicate text that appears in the instructor copy only. Topology Scenario The company you work for has acquired a new branch location.

More information

Connectivity options configuration

Connectivity options configuration Global Connection Settings dialog box, page 1 Connectivity options access, page 5 Advanced details about ICA and RDP connections, page 18 Global Connection Settings dialog box While it is not recommended

More information

PowerShell Master Class

PowerShell Master Class Region Example Creating a PowerShell Script Basics of PowerShell Script Best Practices for Script Authoring Interacting With Users 4 #region CIM Get-Command -Module CimCmdlets Get-CimClass -ClassName *disk*

More information

Scholastic Reading Inventory. Installation Guide

Scholastic Reading Inventory. Installation Guide Scholastic Reading Inventory Installation Guide For use with SRI v1.8.1 and SAM v1.8.1 Copyright 2009 by Scholastic Inc. All rights reserved. Published by Scholastic Inc. SCHOLASTIC, SYSTEM 44, SCHOLASTIC

More information

Developer Guide c-treeedge Windows IoT Tutorial

Developer Guide c-treeedge Windows IoT Tutorial Developer Guide c-treeedge Windows IoT Tutorial c-treeedge Windows IoT Installation and Orientation Contents 1. c-treeedge Windows IoT Installation and Orientation... 3 1.1 Explore Your Device... 3 1.2

More information

Manual Script Windows Batch If Condition. Statement Examples >>>CLICK HERE<<<

Manual Script Windows Batch If Condition. Statement Examples >>>CLICK HERE<<< Manual Script Windows Batch If Condition Statement Examples IF DEFINED MyVar (ECHO MyVar IS defined) ELSE (ECHO MyVar is NOT defined). The following code, which works in batch files for all MS-DOS, Windows.

More information

Horizon DaaS Platform 6.1 Service Provider Installation - vcloud

Horizon DaaS Platform 6.1 Service Provider Installation - vcloud Horizon DaaS Platform 6.1 Service Provider Installation - vcloud This guide provides information on how to install and configure the DaaS platform Service Provider appliances using vcloud discovery of

More information

Hyper-V - VM Live Migration

Hyper-V - VM Live Migration Hyper-V - VM Live Migration Hyper-V Live Migration is first introduced in Windows Server 2008 R2 and enhanced lot in later versions. Hyper-V live migration moves running virtual machines from one physical

More information

Backup using Quantum vmpro with Symantec Backup Exec release 2012

Backup using Quantum vmpro with Symantec Backup Exec release 2012 Backup using Quantum vmpro with Symantec Backup Exec release 2012 Step 1) If the vmpro appliance name and IP address are not resolved through DNS, update the Windows hosts file to include the IP address

More information

Turn On Windows Firewall Manually Windows 7 Command Line Netsh Advfirewall

Turn On Windows Firewall Manually Windows 7 Command Line Netsh Advfirewall Turn On Windows Firewall Manually Windows 7 Command Line Netsh Advfirewall Enable Remote Desktop in Windows Firewall from command line netsh.exe advfirewall firewall add rule name="remote Desktop - User

More information

WHITEPAPER DEEP FREEZE ENTERPRISE PATCH MANAGEMENT

WHITEPAPER DEEP FREEZE ENTERPRISE PATCH MANAGEMENT TM WHITEPAPER DEEP FREEZE ENTERPRISE PATCH MANAGEMENT Content Page Introduction...03 Scheduled Patch Maintenance...03 Scheduling Windows Updates...04 Scheduling Windows Updates using a Windows Update Workstation

More information

Test Lab Guide: Windows Server 2012 Base Configuration

Test Lab Guide: Windows Server 2012 Base Configuration Test Lab Guide: Windows Server 2012 Base Configuration Microsoft Corporation Published: September 10, 2012 Abstract This Microsoft Test Lab Guide (TLG) provides step- by- step instructions to create the

More information

Building Block Installation - Admins

Building Block Installation - Admins Building Block Installation - Admins Overview To use your Blackboard Server with Panopto, you first need to install the Panopto Building Block on your Blackboard server. You then need to add Blackboard

More information

TROUBLESHOOTING GUIDE. Backup and Recovery for Nutanix

TROUBLESHOOTING GUIDE. Backup and Recovery for Nutanix TROUBLESHOOTING GUIDE Backup and Recovery for Nutanix Version: 2.0.1 Product release date: February 2018 Document release date: February 2018 Legal notices Copyright notice 2017 2018 Comtrade Software.

More information

Microsoft Remote Desktop setup for OSX, ios and Android devices

Microsoft Remote Desktop setup for OSX, ios and Android devices Microsoft Remote Desktop setup for OSX, ios and Android devices Table of Contents Microsoft Remote Desktop Installation and Use: Introduction.. 3 OSX setup. 4 ios setup...10 Android setup..22 Page 2 of

More information

System 44 Installation Guide

System 44 Installation Guide System 44 Installation Guide For use with System 44 v1.0 Suite and SAM v1.8.1 or higher Copyright 2009 by Scholastic Inc. All rights reserved. Published by Scholastic Inc. SCHOLASTIC, SYSTEM 44, SCHOLASTIC

More information

Cisco TelePresence Conductor with Cisco Unified Communications Manager

Cisco TelePresence Conductor with Cisco Unified Communications Manager Cisco TelePresence Conductor with Cisco Unified Communications Manager Deployment Guide TelePresence Conductor XC4.0 Unified CM 10.5(2) January 2016 Contents Introduction 6 About this document 6 Related

More information

Gateways / Failover. Help Documentation

Gateways / Failover. Help Documentation Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2018 SmarterTools Inc. Gateways / Failover Outgoing Gateway Gateway servers allow

More information

System Center Helps Deliver IT as a Service

System Center Helps Deliver IT as a Service System Center Helps Deliver IT as a Service Configure App Controller Orchestrator Deploy Public Cloud Virtual Machine Manager Self Service Service Model Service Delivery and Automation Operations Manager

More information

GEH-6849C For public disclosure

GEH-6849C For public disclosure GEH-6849C Control Server Dell Wyse Windows Embedded Standard 7 Thin Client HMI System Support and Maintenance Guide Sept 2017 These instructions do not purport to cover all details or variations in equipment,

More information

Load Balancing Microsoft Terminal Services. Deployment Guide v Copyright Loadbalancer.org, Inc

Load Balancing Microsoft Terminal Services. Deployment Guide v Copyright Loadbalancer.org, Inc Load Balancing Microsoft Terminal Services Deployment Guide v2 Copyright 2002 2017 Loadbalancer.org, Inc Table of Contents About this Guide...4 2. Loadbalancer.org Appliances Supported...4 3. Loadbalancer.org

More information

Cisco TelePresence Conductor with Cisco Unified Communications Manager

Cisco TelePresence Conductor with Cisco Unified Communications Manager Cisco TelePresence Conductor with Cisco Unified Communications Manager Deployment Guide XC2.2 Unified CM 8.6.2 and 9.x D14998.09 Revised March 2014 Contents Introduction 4 About this document 4 Further

More information

Website :

Website : Website : https://testdumps.org/ Email : testdumps.org@gmail.com 70-417 Upgrading Your Skills to MCSA Windows Server 2012 QUESTION 1 You have a server named Server1 that runs Windows Server 2012. You promote

More information

WIALAN Technologies, Inc. Unit Configuration Thursday, March 24, 2005 Version 1.1

WIALAN Technologies, Inc. Unit Configuration Thursday, March 24, 2005 Version 1.1 WIALAN Technologies, Inc. Unit Configuration Thursday, March 24, 2005 Version 1.1 Table of Content I. Introduction...3 II. Logging into WiSAP... 3 III. WiSAP Overview... 5 Splash Screen... 5 System Status...

More information

Connecting to the Virtual Desktop Infrastructure (VDI)

Connecting to the Virtual Desktop Infrastructure (VDI) System Office IT Connecting to the Virtual Desktop Infrastructure (VDI) There are four ways to connect to the system office Virtual Desktop Infrastructure (VDI): Web client Windows client - personal computer

More information