5 dic 2012

SCCM by Davis: “srinivas kanugula joined the group System Center Operations Manager” plus 19 more

SCCM by Davis: “srinivas kanugula joined the group System Center Operations Manager” plus 19 more

Link to SCCM by Davis

srinivas kanugula joined the group System Center Operations Manager

Posted: 04 Dec 2012 10:24 PM PST

Comments: 0

dynamicdatacenter.wordpress.com

Posted: 11 Oct 2012 02:35 AM PDT

Hi, From now on you can also see all my posts on: dynamicdatacenter.wordpress.com Hope to see you gu

SCCM Documents

Posted: 10 Oct 2012 04:17 AM PDT

Installing International Client Packs (ICPs) Link

SCCM 2012: Failed to get client identity (80004005)

Posted: 09 Oct 2012 02:36 PM PDT

Issue: OS Deployment failed:

-  PXE keeps rebooting after "preparing Network connection". Errors: "reply has no message header marker", "Failed to get client identity (80004005)", "Failed to request for client"

image

- OSD Boot media cannot see TS

 

Resolution: Set correct time in BIOS!

I found the hint here. Thanks!

Use MDT 2012 Update 1 to run System Center Orchestrator 2012 Runbooks

Posted: 06 Oct 2012 03:46 PM PDT

I recently started working with System Center Orchestrator 2012. It is a very interesting product with lots of possibilities. With MDT 2012 Update 1, I can run my Orchestrator Runbooks. I have a Runbook to check if a service is running and start it if necessary and another Runbook to send an e-mail out when the build completes or fails. I can do this with deployments done through MDT or SCCM (with MDT integrated).

Below is an excellent example from Jörgen Nilsson that demonstrates how to remove a computer from a collection after completion and send an e-mail if it fails.

Task Sequences in SCCM Part 2 Non-OS Deployments, Part 3 OS Deployments and Part 4 Misc Notes

Posted: 06 Oct 2012 12:53 AM PDT

Upgrade Assessment Tool (UAT) 2012 beta for SCCM 2012 formerly known as Configuration Manager 2007 Application Compatibility Toolkit Connector

Posted: 06 Oct 2012 12:36 AM PDT

Taken directly from MS Connect site:

Microsoft System Center 2012 Configuration Manager Upgrade Assessment Tool is a feature pack download that provides administrative users with information that they can use to determine if the operating system on computers that are managed by System Center 2012 Configuration Manager can be upgraded to Windows 7 or Windows 8. The previous version of this tool was the Configuration Manager 2007 Application Compatibility Toolkit Connector (ACT Connector).

Features:

· Retrieves device driver compatibility for installed peripheral devices and creates reports that you can use to determine which device drivers need to be upgraded to support the Windows operating system.

· Allows you to see which computers meet the recommended system requirements for Windows operating systems and to customize these requirements for your environments.

· Creates summary reports that you can use to see an enterprise wide view of operating system upgrade readiness.

· Allows you to create dynamic collections for an operating system deployment. The collection query rules can be based on system requirements, application compatibility status, and device driver status.

Pre-requisites:

Please note that the Beta version of the Upgrade Assessment Tool requires the ConfigMgr SP1 Beta and the Application Compatibility Toolkit (ACT) 6.0 which is available in the Windows Assessment and Deployment Kit (ADK) for Windows 8.

 

More information and download link for the tool can be find on Connect site.

MPCert & MPList Access Denied Error after securing the management point by a certificate

Posted: 03 Oct 2012 10:53 PM PDT

Hi,

To avoid Man In the Middle (MIM) threats, it is advised to configure Management Points to use certificates to secure communications between SCCM agents and management site servers.

A very nice article describes step by step the way to follow in order to succeed the configuration.

But what are the required certificates?

* ConfigMgr Client Certificate
By default, Configuration Manager looks for computer certificates in the Personal store in the Computer certificate store.
With the exception of the software update point and the Application Catalog website point, this certificate authenticates the client to site system servers that run IIS and that are configured to use HTTPS.

* ConfigMgr Web Server Certificate
This web server certificate is used to authenticate these servers to the client and to encrypt all data transferred between the client and these servers by using Secure Sockets Layer (SSL).

So the client certificate is so important to communicate with SCCM site system servers. The agent is configured according to the parameters defined in the Client Computer Communication in such way to select The certificate with the Client Authentication capability from a given store and with some other criteria that you can define.

Now, if you want to verify that all works fine, please check the mpcontrol.log for client-server communications and mpsetup.log to verify the reinstallation of the MP according to the new configuration.

Another good manner to do that is from your browser and in this case you have to type:  https://<MP name>/sms_mp/.sms_aut?mplist to check the Management points list and here BINGO! 403 error : Access Denied.

What's the matter?

In my introduction, I have spoken about the client certificate which is used to authenticate the client to the site server. Your agent client can select the good certificate but your browser (that plays the role as your agent) has to select the (same perhaps) that matches.

So you have to configure your browser to use this certificate. To achieve this goal, please follow these steps:

  • Export the client certificate that the SCCM agent uses with its private key in pox format.
  • Import the exported certificate in your IE browser : Options>Internet Tools>Content>Certificates>in the personnal store import the pfx file.

Refresh your page and it works!

#SCCM/ #ConfigMgr 2012 : Cumulative Update 1: Errors

Posted: 03 Oct 2012 09:34 AM PDT

I've encountered following errors while installing CU1 "configmgr2012adminui-rtm-kb2717295-i386.msp"

LTI/ZTI Scripting: MDT Scripting Template

Posted: 02 Oct 2012 09:00 PM PDT

It's back to VBScript today. I received an email from a reader last week. He had an issue with a deployment script. We thought it would be a good idea to share the solution. For me, a chance to review some of my previous posts. Tony wrote:

I'm trying to run a simple function in my TS to put the Make and Model (from WMI) into the OEM information key of the registry, so it shows up in the System Properties screen.  By itself, the script works normally:

  On Error Resume Next  Dim RegShell  Dim objLocator  Dim wmi  Set RegShell = CreateObject("Wscript.Shell")  Set objLocator = CreateObject("WbemScripting.SWbemLocator")  Set wmi = objLocator.ConnectServer(CompName, "root\cimv2",,,,,128)    For Each Instance in wmi.ExecQuery("Select * From Win32_ComputerSystem",,48)                  Make = Instance.Manufacturer                  Model = Instance.Model  Next    Model = Trim(Model)    RegShell.RegWrite "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation\Manufacturer", Make, "REG_SZ"  RegShell.RegWrite "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation\Model", Model, "REG_SZ"    ' Line below used for testing only.  ' MsgBox "Computer Make-Model has been written to the Windows System Properties page."  Wscript.Quit(0)  

If I try to integrate this into the MDT Script Template, I constantly get an error, in the attached picture. I basically put the same code in the spot where it says 'Insert Your Code Here!!!!'.

I've attached my template copy as well. I'd really like to use the script template for things like this, and I'd also like to figure out the logging aspect as well. First though, I have to figure out why it's not running. Thanks for any help you might be able to give!

/Tony

So what went wrong? Well Tony's created a complete (stand alone) script. That would work great in MDT but he's wrapped it in the deployment template. He's also created extra work for himself because using the MDT template is supposed to save you time and effort. I've blogged extensively on this but perhaps a recap is due.

Ok, where do I begin? Well, I've explained where to get and how to use the MDT scripting template here: MDT Scripting: Creating custom scripts Getting Started

After that, there's just a few things to remember. The script makes a call to another VBScript called ZTIUtility.vbs(Located in the scripts folder of the deployment share). This acts like an engine and takes care of the heavy lifting for you. It contains a huge list of functions and declarations so you don't have to write them yourself. So when using the MDT Template:

  • Do not create objects for WMI, Windows Scripting host or to read the registry
  • Do use the available functions/subroutines to:

Write a Variable,
Read a Variable,
Write to Log files,
Copy, Move or delete files,
Read or Write Registry Keys,
Delete Registry Keys,

  • Do not insert a whole script on the line that says '!!!!!!!!!!! INSERT YOUR CODE HERE !!!!!!!!!!!!
  • Do Declare all variables
  • Do read my posts to save yourself hours in scripting
  • Do open the file ZTIUtility.vbs and browse the subroutines to learn what it's doing.
  • Do not edit the ZTIUtility.vbs –Ever!
  • Do open and read the ZTIGather.xml

In the end, I was able to help Tony with these few lines:

  	oLogging.CreateEntry "Write Registry Keys Script", LogTypeInfo    	Dim sRegKey, sMakeKey, sMakeRegValue, sModelKey, sModelRegValue    	sRegKey = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation"    	sMakeKey = sRegKey & "\Manufacturer"  	sMakeRegValue=oUtility.regWrite(sMakeKey, oEnvironment.Item("Make"))    	sModelKey = sRegKey & "\Model"  	sModelRegValue=oUtility.regWrite(sModelKey, oEnvironment.Item("Model"))  

The code was simply pasted where it says '!!!!!!!!!!!   INSERT YOUR CODE HERE   !!!!!!!!!!!!

If the points above dont cover everything needed to script in MDT. You can also read the references below:

You can download a copy of the template from here.
Ben Hunter – BDD 2007 – Tips and Tricks – How to write a custom script.
Xtreme Deployment.

 

ACS Well known error: The application threw exception: CreateSRSDataSource: Exception The request failed with HTTP status 404: Not Found...

Posted: 01 Oct 2012 09:30 PM PDT

Hi,

During the ACS ( Audit Collection Services) reporting configuration I have encountered this well known error : "The application threw exception: CreateSRSDataSource: Exception The request failed with HTTP status 404: Not Found…". If you have also this error "the application threw exception create datasource exception invalid uri the uri scheme is not valid", this post is for you.

So before giving the small solution to fix this error, let us describe my environment:

  • 2 Management Servers; one of them is the ACS collector.
  • 1 Database server DBServer with configured reporting services for the SCOM reports.
  • The ACS server ACSServer hosts the ACS database.

The default instances were installed on the two servers.

In my case, I'd like to install the ACS reporting extension on my reporting instance server DBServer. To do that, you have just to follow these steps:

  1. Log on to the server that will be used to host ACS reporting as a user that is an administrator of the SSRS instance.
  2. Create a temporary folder, such as C:\acs.
  3. On your installation media, go to \ReportModels\acs and copy the directory contents to the temporary installation folder.There are two folders (Models and Reports) and a file named UploadAuditReports.cmd.
  4. On your installation media, go to \SupportTools and copy the file ReportingConfig.exe into the temporary acsfolder.
  5. Open a Command Prompt window by using the Run as Administrator option, and then change directories to the temporary acs folder.
  6. Run the following command UploadAuditReports "<AuditDBServer\Instance>" "<Reporting Server URL>" "<path of the copied acs folder>" .For example: UploadAuditReports "myAuditDbServer\Instance1" "http://myReportServer/ReportServer$instance1" "C:\acs". This example creates a new data source called Db Audit, uploads the reporting models Audit.smdl andAudit5.smdl, and uploads all reports in the acs\reports directory.

In my case the Report Manager URL is "http://DBServer/Reports". I have executed the following command on my reporting server DBServer  UploadAuditReports "ACSServer" "http://DBServer/Reports" "C:\acs"

And of course the error was generated. Even you read the solutions on Internet, you can not easily notice that what is needed is the Report Server URL and not the Report Manager URL!

The Report Server manager is the Web Service used by the Report manager to manage the reports. In my case: the address is http://DBServer/ReportServer_SQL2008.

So the new command to type is UploadAuditReports "ACSServer"  "http://DBServer/ReportServer_SQL2008" "C:\acs"

For advanced troubleshooting, try to take a look on the UploadAuditReports batch source:

@echo off

@if .%1 == "?" goto usage
@if .%1 == "/?" goto usage

REM Set defaults for optional parameters
set SRSFolder="Audit Reports"
set DataSourceName="DB Audit"

@if .%1 == . goto errormissingvariable
@if .%2 == . goto errormissingvariable
@if .%3 == . goto errormissingvariable

ReportingConfig.exe /DoAction:CreateDataSource /DBServerName:%1 /DBName:"OperationsManagerAC" /SRSUrl:%2 /SRSFolder:%SRSFolder% /DataSourceName:%DataSourceName% /WindowsIntegrated /LoadReportsFromFolder:%3\Models

ReportingConfig.exe /DoAction:CreateDataSource /DBServerName:%1 /DBName:"OperationsManagerAC" /SRSUrl:%2 /SRSFolder:%SRSFolder% /DataSourceName:%DataSourceName% /WindowsIntegrated /LoadReportsFromFolder:%3\Reports

@goto end

:errormissingvariable
@echo Error: Parameter Missing
@goto usage

:usage
@echo UploadAuditReports {DatabaseServerAndInstance} {ReportingServiceURL} {ReportFolder}
@echo Example (database with instance):
@echo UploadAuditReports MyDBServer\Instance1 http://MyDbServer/ReportServer$Instance1 C:\MyReports
@echo Example (database with no instance):
@echo UploadAuditReports MyDBServer http://MyDbServer/ReportServer C:\MyReports

@goto end

:end

For example, if during ACS database installation, you have changed the default name "OperationsManagerAC", you will have some surprises!

LTI/ZTI PowerShell: Outputting Transcript from PowerShell Console

Posted: 01 Oct 2012 09:00 PM PDT

While testing a Lite-Touch deployment, I had an issue with a PowerShell script running in an application package. The error flashed by on the console screen so fast that I could not read it. To top that off, the log file reported the execution as a success. I had to run the deployment 3 times to capture this screen shot.

Transcript - Error

Why run it as an application instead of a Run PowerShell Script? Well the script imports GPO's and I have a manifest and other files that work with it, so it makes sense to create an application package and keep everything together. The issue is that running the script in this manner takes away the advanced logging features that a Run PowerShell Script task sequence step provides.

I then remembered that there was a PowerShell command that I could employ to help here. It's called Start-Transcript and its an easy one to use. Here's an example:

  Begin {   Import-Module GroupPolicy   Start-Transcript C:\Temp\Transcript.txt  }  Process {   Import-GPO -BackupGpoName 'Default Domain Policy' -TargetName 'Default Domain Policy' -Path (Get-Location)  }  End {   Stop-Transcript  }  

After running the script, you're left with a text output of your session.

Transcript - Log

This handy trick helped me track down the issue and get my deployment back on track. In the end my Import GPO issue was quite easy to fix:

  Begin {   Import-Module GroupPolicy   $AppPath = $PWD.ProviderPath  }  Process {   Import-GPO -BackupGpoName 'Default Domain Policy' -TargetName 'Default Domain Policy' -Path $AppPath  }  End {}  

SCCM 2012: Preparing XP gold image

Posted: 01 Oct 2012 01:37 PM PDT

1. Prepare VM (on VMWare Workstation 8.0)

- VM type: Windows XP

- HDD: SCSI (check .vmdk file to verify SCSI type is set to BusLogic)

- Network adapter E1000 ( enter ethernetN.virtualDev = "e1000"  in VM configuration (.vmx) file. N is the adapter index, if there is only one adapter it will be 0)

2. Prepare SCCM boot image.

- Extract SCSI drivers from wimndows.iso in VMWare Workstation installation folder

- Add the drivers to 32-bit image

3. Prepare Driver package

- Create n empty Driver Package

- Add SCSI drivers to the package

- Download drivers from Intel site (Prowin32.exe)  http://downloadcenter.intel.com/detail_desc.aspx?agr=Y&DwnldID=18717

- Extract drivers to a temp folder and import them to the prepared Driver Package. Note: (some drivers are for Windows 8 and will give you an error).

4. Prepare Deployment Tool Package

- Extract \Support\Tools\Deploy.cab  to a tem folder

-Create a package using the temp folder as a source (we do not need any Program)

5. Create a package containing Software Updates for XP and Deploy it to a collection containing the reference machine (otherwise "Install Updates" step won't work

6. Prepare Task Sequence:

- Add a TS variable OSDDiskpartBiosCompatibilityMode=TRUE to workaround Uberbug issue

image

-Add Apply Driver Package Step to apply VMWare drivers for XP

image

Note: If you use a Hyper-V based machine you do not need any additional drivers (but still need Uberbug step and a package for Deployment tools)

Note. As soon as the image is captured remove the .wim file from the destination folder. SCCM cannot manage situation when the destination file is already exists and the TS will fail if you will decide to recapture the image.

ConfigMgr 2007: OSD Task Sequence Fails with the error "An error occurred while retrieving policy for this computer (0x80004005)"

Posted: 01 Oct 2012 10:34 AM PDT

Here's another ConfigMgr 2007 OSD tip from Frank Rojas out in Charlotte, North Carolina.  If you have a Task Sequence that fails almost immediately after it boots into WinPE with an 0×80004005 error then you'll want to check this one out:

========

Issue: When attempting to deploy a Task Sequence via SCCM 2007 OSD, the Task Sequence fails almost immediately after it boots into WinPE with the following error message:

An error occurred while retrieving policy for this computer  (0×80004005). For more information, please contact your system administrator or helpdesk operator.

Examining the SMSTS.log shows the following error message:

No cert available for policy decoding
Failed to download policy (Policy_ID> (Code 0×80004005).

Cause: This error message can be caused by missing, expired, or blocked Certificates for either the Boot Media or the PXE Service Point.

Resolution: To determine if the Certificate is missing, expired, or blocked follow the steps below:

  1. In the Configuration Manager Admin Console, expand Site Database –> Site Management –> <Site_Code> –> Site Settings –> Certificates.
  2. Click on either Boot Media or PXE, depending on the method that the PC is being booted when trying to run the OSD Task Sequence.
  3. On the right hand pane, locate the Certificate being used and see if it is blocked, expired, or missing.

To resolve the issue for missing or expired certificates on Boot Media, a new certificate needs to be created:

  1. Recreate the Boot Media by going in the Configuration Manager Admin Console to Site Database –> Computer Management –> Operating System Deployment.
  2. Right clicking on Task Sequences and choosing Create Task Sequence Media.
  3. Step through the Task Sequence Media Wizard to create the appropriate media.
  4. In the Security screen, locate the Create self-signed media certificate option.
  5. Make sure that the Set start date is set to either today or some date in the past.
  6. Make sure that the Set expiration date is set to some date in the future.
  7. Finish stepping through the Task Sequence Media Wizard to finish creating the ISO or USB Flash Drive.
  8. Go to Site Database –> Site Management –> <Site_Code> –> Site Settings –> Certificates –> Boot Media and verify that there is now a valid non-expired non-blocked Certificate.
  9. If using CDs/DVDs, once the ISO is created, create a CD/DVD from the ISO and dispose any previous OSD CDs or DVDs.
  10. If using a USB Flash Drive, make sure to recreate all USB Flash Drives be redoing steps 1-8 above.

To resolve the issue for missing or expired certificates on a PXE Service Point, a new Certificate needs to be created:

  1. Go to Site Database –> Site Management –> <Site_Code> –> Site Settings –> Site Systems and choose the server where the PXE Service Point is located.
  2. In the right pane, right click on the ConfigMgr PXE service point and choose Properties.
  3. Click on the Database tab and locate the Create self-signed PXE certificate option.
  4. Under Create self-signed PXE certificate, set the Set expiration date option to some time in the future.
  5. Click OK.
  6. Go to Site Database –> Site Management –> <Site_Code> –> Site Settings –> Certificates –> PXE and verify that there is now a valid non-expired non-blocked Certificate.
  7. Update the Boot Images by going to Site Database –> Computer Management –> Operating System Deployment –> Boot Images.
  8. Expand both the Boot image (x64) and Boot image (x86) nodes (and any custom Boot Images if present).
  9. For each Boot Image, right click on Distribution Points and choose Update Distribution Points.
  10. Step through the Manage Distribution Points wizard until it has completed rebuilding the Boot Images.
  11. Restart the Windows Deployment Services (WDS) Server service.

To resolve the issue if the certificate is blocked, follow these steps:

  1. Go to Site Database –> Site Management –> <Site_Code> –> Site Settings –> Certificates.
  2. Choose either Boot Media (if the deployment is being done via a boot media) or PXE (if the deployment is being done via PXE). You will be able to see all of the certificates associated with either the Boot Media or the PXE point.
  3. Check to see if the applicable certificate is set to "Blocked" under the Status column. If the certificate is blocked, unblock it. To unblock a certificate, right click on it and choose "Unblock".

If you are not certain which certificate is the applicable one, you may have to unblock the certificates one at a time, retry the deployment again, and then see if the error goes away. Once you have determined the applicable certificate, you may want to go back and re-block the certificates that were not applicable and were unblocked during the testing.

 

http://blogs.technet.com/b/smsandmom/archive/2008/10/23/configmgr-2007-osd-task-sequence-fails-with-the-error-an-error-occurred-while-retrieving-policy-for-this-computer-0×80004005.aspx

Lead Enterprise Infrastructure Engineer – Job opening Location Voorhees, NJ

Posted: 01 Oct 2012 09:36 AM PDT

AurionPro Solutions Leading Global IT Consulting Services.

We've Urgent requirement with one of our client for Lead Enterprise Infrastructure Engineer – Job opening Location Voorhees, NJ

Position title: Lead Enterprise Infrastructure Engineer

Work Location : Voorhees, NJ

Duration: Permanent

Note: as per the client Discretion Applicant Must be US Citizen 

Job Description:

Works with CLIENT Architect group to help facilitates the establishment and implementation of standards and guidelines that guide the design of technology solutions including architecting and implementing solutions requiring integration of multiple platforms, operating systems and applications across the CLIENT enterprise.

Develops and documents the framework for integration and implementation for changes to technical or operational standards.

Develops procedures for routine administration, monitoring and maintenance of CLIENT's ITS infrastructure.

Develops procedures for managing infrastructure configurations to provide capacity planning and performance monitoring/tuning of systems.

Develops and implements business continuity practices for CLIENT's ITS infrastructure   to meet high availability and mission critical business needs.

Assist with coordinating the efficient and reliable allocation CLIENT's of ITS infrastructure.

Provides training, guidance, and mentorship to less experience IT technicians and administrators.

Ensures team tracks industry trends and maintains knowledge of new technologies  to better serve the enterprise's architecture needs Strategic Planning & Advising .

Serves as an advisor to CLIENT senior IT management by providing senior level technical expertise on decisions and priorities regarding the enterprise's overall server and storage architecture and system software and utilities.

Serves as primary advisor on technology prioritization as well as future utilization of technology, business process improvements.

Leads multiple, complex activities including strategic efforts for all planning, analysis, design, development and implementation of IT hardware and operating systems, monitoring software, tools and utility software solutions.

Develops, reviews and implements systems and documentation under development. 

Operational Performance:

Leads others in delivering continuous process improvement of internal ITS processes in order to meet changing business unit conditions

Serves as a key project team member alongside project managers, other technical leads, and business subject-matter experts.

Analyzes and documents relevant technical processes related to systems projects and improves these processes where appropriate.

Develops and leads peer reviews of technical artifacts such as; system and functional requirements, technical specification documents, and software testing scripts, for software selection and development projects.

Leads the implementation and roll-out of projects and/or work efforts and provides support to users.

Supports and complies with ITS policies and procedures including, Change Control, project management methodology, and SOX controls ensuring 100% compliance.

Work with hosting provider to plan activities, duration and resource estimates for server related components of projects and makes recommendations based on the lessons learned.

Technical Infrastructure Engineering & Management:

Applies systems analysis techniques and conducts user interviews to determine functional requirements and specifications for enterprise server domain solutions.  Partners with CLIENT ITS architecture in the development of strategy, standards and implementation of technology solutions that enable the business to accomplish exceptional customer service, operational and financial goals.  Designs appropriate processes and solutions.  Makes recommendations and prepares reports as required

Develops, manages and supports IT infrastructure and operations processes and procedures to ensure the continued evolution of IT Standards, IT Roadmaps, and the strategic Target Architecture.  Supports production hardware and software system upgrades and installations; assists with and coordinates installations and changes to automated operations enabling products such as job scheduling products, on-line viewing tools, and configuration management products.  Provides tier four support for problems encountered with enterprise server production processing, including off hours support.

Maintains constructive, proactive and ongoing relationship with key hardware, software and services vendors.  Serves as advisor on matters within the enterprise server domain, including technical design, maintenance, asset management and operations.  Provides in-house technical training, coaching, and development for CLIENT staff.

Conducts process evaluations and analyzes infrastructure performance to identify capital improvements necessary to meet IT computing capacity needs.  Provides advice and guidance on the development of design concepts for new or replenishment of existing infrastructure.  Provides consulting services and conducts quality assurance review of technical, bidding and contractual documents associated with delivery of IT projects.  Monitors scope and quality of work to achieve the intent of all design concepts and standards for capacity, performance, reliability and regulatory compliance.  Serves as technical resource during implementation and ongoing support of IT solutions.

  • Participates in technology selection discussions.
  • Learns new technologies, tools and techniques as required or directed.
  • Authorizing and setting standards for all hardware and Infrastructure software.
  • Leads root cause analysis process when solving problems and implements solutions that will prevent the problem from reoccurring.
  • Works with hosting vendor to recommend for request for proposals, purchasing of server and storage hardware and software supplies and vendor services.
  • Make recommendations and leads technology selection discussions.
  • Makes recommendations and participates in budget planning.
  • Tracks industry trends and maintains knowledge of new technologies to better serve the enterprise's architecture needs.

Process Improvement:

Leads efforts to identify processes for improvement, documents existing processes, identifies and analyzes gaps between current processes and the desired state, designs new processes, develops process performance measures and plans the transition to a new process.

Vendor Management:

Routinely works with technical and non-technical vendors and deals with these in a professional manner.

Education:

Bachelor's Degree in electrical engineering, computer science or related field required. In lieu of specified degree(s), other degrees in other fields may be considered in conjunction with equivalent work experience or equivalent work experience. 

Skills:

Demonstrated analytical, problem solving, planning and organizational skills.

Ability to deal with a variety of concrete variables in situations where only limited standardization exists.  Ability to evaluate possible courses of conduct, interpreting results or implications, and independently taking or effectively recommending action after considering the various possibilities.

Demonstrated ability to communicate effectively both written and verbal to a wide range of audiences.

Demonstrated leadership skills, including the ability to effectively lead highly productive work teams and work across the organization.

Capable of working with other subject matter experts and business representatives, and influence others to create a collaborative synergistic solution based on business value.

Demonstrated ability to handle multiple projects/activities simultaneously.

Ability to work with minimal supervision. 

Knowledge:

Advanced knowledge of concepts, practices and procedures of information technology systems, applications and operating systems for both SCADA and enterprise environments.

Complete and thorough knowledge and understanding of Information Technology with specific focus on enterprise server domains.

Hardware lifecycle, including maintenance activities and IT operations/production sufficient to communicate about development, testing, and production environments.

Operating system configuration management and release management principles sufficient to ensure the integrity of our hardware and to direct staff in their proper use.

Release, change, and configuration management processes.

Project management principles sufficient to be an effective project lead on projects.

Experience:

  • Typically has 7+ years of IT work experience in infrastructure/systems environments performing systems planning, architecture design, engineering (hardware and software) and optimization.
  • Advanced/lead technical role.
  • Defines systems architecture and design for the CLIENT enterprise which is the Market-Based subsidiary of Client.
  • Works on multiple projects as a project leader or as the subject matter expert.
  • Works on projects/issues of high complexity that require in-depth knowledge across multiple technical areas and business segments.
  • Coaches and mentors more junior technical staff within CLIENT.
  • Demonstrated track record designing complex, yet standardized and well-designed systems landscapes; diagnosing complex application, hardware, software and system support events; and assuring adherence to documented team compliance expectations.

 

Certifications & Licenses:

ITIL v3 Foundation, CCNA, Microsoft, CISSP, Citrix

 

Work Environment:

Requires "on-call" out of hours support during evenings, nights, holidays and or weekends.

Travel Requirement:

Up to 25% as required

Key Interfaces:

CLIENT EMT ( Enterprise Management Teams)

CLIENT LOB directors and managers

CLIENT SR. Manager

CLIENT CIO

CLIENT ITS Directors

CLIENT ITS Managers

 

Thanks

Vignesh

Sr. Talent Acquisition

e mail: vignesh.renikuntla@aurionpro.com

Linkedin: http://www.linkedin.com/in/viggy1

Phone: 408-754-6161

Fax: 732 909 2221

AurionPro Solutions, Inc.

379 Thornall Street

2nd Floor Edison NJ 08837

www.aurionpro.com

Fix for SCCM 2007 packages in a waiting to install state

Posted: 01 Oct 2012 08:18 AM PDT

From time to time, I will have a package get stuck in a Waiting to Install state. In the past, I tried numerous methods to fix them from resetting to the package using SQL commands to giving up and creating a new package. Several years ago a fellow SCCM administrator shared a method that has consistently worked for me. Below are the steps I use.

  1. Log on to the DP that is experiencing the problem.
  2. Locate the pck file for the problem package in SMSPKG.
  3. Delete the pck file.
  4. Delete the pkg file for the problem package. (The pkg file is located in SMS\inboxes\distmgr).
  5. Copy the pck file for the problem package from another server to the problem DP.
  6. In the SCCM admin console, refresh the problem package on the DP.
  7. After a few minutes, check to see if the pkg file for the problem package is back in sms\inboxes\distmgr.
  8. Use preloadpkgonsite to preload the package on the problem DP.
  9. Examine distmgr.log to confirm that the pck file is now being decompressed.
  10. Examine distmgr.log to confirm that the package was successfully copied and the status was forwarded to the primary server.
  11. Examine the package status using the SCCM admin console or SCCM reporting to confirm that the package is listed as Installed and not Waiting to Install.

Using and Troubleshooting Client Push in SCCM

Posted: 01 Oct 2012 07:59 AM PDT

When I first started working with SMS, I found troubleshooting the client push to be somewhat difficult. There were no troubleshooting steps that detailed what to look at and when to. I decided to create simple to follow steps that would assist. With few changes to client push over the years, these troubleshooting steps have continued to work well for me with minor changes.

Steps for using and troubleshooting client push (Note – These steps are based on SCCM 2012. However, they can easily be used for SCCM 2007.):

  1. Expand Assets and Compliance.
  2. Select the collection that the machine or group of machines is part of.
  3. Right-click the machine or group of machines and select Install Client.
  4. In the Installation Options screen, checked the desired options that will be used and click Next.
  5. A message will appears that the SCCM client will be deployed.
  6. Examine the CCM.log in <<SCCM Installation>>\Logs.
  7. Search for confirmation that ccmsetup and the other SCCM client files are being copied to the targeted machine.
  8. On the targeted machines, examine the processes running on the machine and confirm that ccmsetup is running.
  9. On the target machine, examine the ccmsetup.log and confirm that the SCCM client is installing.

Two Common Problems and Troubleshooting

  1. No Client Push Account Configured  – Examine the CCM.log on the SCCM server. Look for a warning that no remote client installation was found. Configure a client push account to resolve.
  2. Client Push Account Configured but Client does not install – Examine the CCM.log on the SCCM server. Look for an error that it failed to the admin$ share. Ensure the client push account has rights to connect and  install on the targeted machine.

This slideshow requires JavaScript.

The new look SCCM 2012 Distribution Point: Single Instance Storage

Posted: 29 Sep 2012 03:33 PM PDT

I was leafing through some SCCM 2012 information and found an old post from John Vintzel about how the Distribution Points in SCCM 2012 work differently compared to how they used to work in 2007. Whilst his post is about SCCM 2012 Beta 2, it's still relevant to the full release and John touches on all the differences between System Center Configuration Manager 2007 and 2012.

John Vintzel's blog article:

http://blogs.technet.com/b/inside_osd/archive/2011/03/28/configuration-manager-2012-distribution-points-and-pxe-services.aspx

My favorite changes are the fact that microsoft have merged all the distribution points (Standard, branch dp and server share) into a single DP role, the fact that you can select any machine (vista SP2 and above) to be a DP and Single Instance Storage.

It's also quite neat that they've rolled the pxe service point up into the DP so now instead of two roles, you can rely on the DP to pxe boot clients.

I want to delve a little more into single instance storage as I think this is a great feature. It allows you to only store a single instance of a unique file even when it is referenced by multiple packages. This is great! It means a largely reduced DP as it doesn't have to replicate content into their separate directories. This has two direct benefits of using less disk space and less content replication traffic if your DP's are over the wire in a branch office somewhere.

The change does mean that SCCM 2012 now uses a directory called the "content library" (SCCMContentLib) which contains three components, file, data and package library and this replaces the old method of using the SMSPKG shares as the default directory structure to host your packages and content.

 

The only real issue with this is because we now use single instance storage, grabbing a package from a DP manually can be a bit of a chore as previously all we needed was the packageID and we could just match that up. Now the files are broken up in the three areas of the content library.

The datalib directory (Data Library) references the metadata of the file; its attributes and hash. The hash value will identify the file in question you are looking for.

The filelib directory (File Library) will host the actual file as well as data referencing which packages are linked with that relevant file.

The pkglib directory (Package Library) will tell you the details of that package in SCCM 2012 such as the version number/revision of that package etc.

When it comes to distribution time, SCCM will use all these pieces of data from the content library and "recreate" the package.

Howard Hoy writes a pretty in depth explanation of this:

http://blogs.technet.com/b/hhoy/archive/2012/05/31/an-adventure-in-the-sccmcontentlib-single-instance-store.aspx

And Vimal Das posted an excellent break down of his testing into seeing how SIS works with screenshots of his steps! Great stuff:

http://vimaldas-c.blogspot.co.uk/2012/07/sccm-2012-with-smart-content-library.html

Deploy Server 2012 with SCCM 2007

Posted: 28 Sep 2012 01:47 PM PDT

Yes, it can be done but as you know it is Not supported by Microsoft.

Start installing a server 2012 in a virtual environment, Configure it as you as like it to be.

Follow danovich's blog http://blog.danovich.com.au/2012/03/06/deploying-windows-8-with-sccm-2007-r3/

from the point where he does the sysprep…. – Do the ImageX stuff.

Then you have a server 2012 wim file.

Implement this as a normal image os in SCCM2007 and you're done.

PS/If you are using Vmware then you should use the E1000 driver, Netflex3 will fail.

I'm still having some issue with the MDT role installations, but I think it wil be solved soon.

adveritsement of a single package works fine

have fun

Remember: it is NOT supported by MS

John Nelson wrote a new post, Why I traded in my Kindle Fire HD 8.9" 4G for a Google Nexus 10" wifi

Posted: 04 Dec 2012 06:39 PM PST

Recently, I had the great fortune of playing with a Kindle Fire HD 8.9" tablet.  At first I was really excited and stunned by how it performed.  As time went on, however, I started to resent little things […]

Comments: 0

No hay comentarios:

Publicar un comentario

SCCM by Davis