URLs
[formidable id=”2″ title=”1″]
[formidable id=”2″ title=”1″]
by Steven Swafford Feedback C# and VB.NET Comparison Cheat Sheet This document is an authorized derivative of Frank McCown’s “VB.NET and C# Comparison” (C) 2005 at http://www.harding.edu/USER/fmccown/WWW/vbnet_csharp_comparison.html This work is licensed under a Create Common License [ Download Word Version or PDF Version ] Comments VB.NET ‘Single line only Rem Single line only C# // Single line /* Multiple line */ /// XML comments on single line /** XML comments on multiple lines */ Program Structure VB.NET Imports System Namespace…
Service Manager – get-SCSMServiceRequest (from http://down-to-earth3.rssing.com/chan-2848486/all_p11.html) Import-Module smlets #Get Date 12 hours ago $Date12HoursAgo = (Get-Date).AddHours(-400) #Get Assigned To relationship class $RelAssignedTo = Get-SCSMRelationshipClass -Name system.workitemAssignedTo #Get Service Request Class $srClass = Get-SCSMClass -Name system.workitem.servicerequest$ #Get all SRs made from 12 hours ago to now. $SRs = Get-SCSMObject -Class $srClass -Filter “CreatedDate -gt $Date12HoursAgo” “No Assigned User on the following Service Requests:`n`n” foreach ($SR in $SRs) { if(!(Get-SCSMRelatedObject -SMObject $SR -Relationship $RelAssignedTo)) { $SR | ft Displayname, CreatedDate -HideTableHeaders } }
Source: http://grantorchard.com/vcac/concepts/navigating-the-vcac-6-0-logical-model/ Navigating the vCAC 6.0 Logical Model – 2013 10 Comments I’ve been spending a fair amount of time with my head inside vCAC 6 of late, and one of the things that seems to come up a lot is that people don’t understand the relationships between the various logical constructs that vCAC uses. Here’s a quick rundown on some of the key ones (I’m not trying to be obtuse with these, I promise!): Endpoint Endpoints are your provisioning…
Dell FX2 Technology Is Awesome (2015) Whitepaper: http://partnerdirect.dell.com/sites/channel/Documents/PowerEdge-FX-Architecture-Portfolio-Overview-Whitepaper.pdf Additional Reference ————————— SOURCE: http://everythingshouldbevirtual.com/tech-field-day-vfd4-dell-fx-architecture Tech Field Day – #VFD4 – Dell FX Architecture Posted on January 21, 2015 by mrlesmithjr — 1 Comment ↓ Tech Field Day – #VFD4 – Dell FX Architecture Carol Pflueger, Servers Product Manager, introduces the Dell PowerEdge FX architecture First off I would like say that Carol was top notch on this presentation. As always it is awesome to see women in tech breaking it all down; and that she did. I would…
Disable a Windows 2008 or Windows 2012 Server Boot (old boot.ini) 1) Unjoin the domain 2) Command prompt as administrator in \windows\system32 folder 3) bcdedit /deletevalue {bootmgr} device 4) bcdedit /deletevalue {current} device 5) Reboot
You are here: Home / Microsoft / Hyper-V / Nesting Hyper-V 2012 R2 on ESXi 5.5 Nesting Hyper-V 2012 R2 on ESXi 5.5 June 19, 2014 by Derek Seaman Comments (9) Since joining Nutanix I’ve had the opportunity to get exposed to Microsoft Hyper-V 2012 R2, as our platform supports the three most common hypervisors: VMware vSphere, Hyper-V, and KVM. I’m now embarking on writing some Hyper-V guides for Nutanix, and wanted a way to leverage my existing ESXi 5.5…
Database Mirroring and Replication (SQL Server) SQL Server 2014 Other Versions SQL Server 2012 SQL Server 2008 R2 SQL Server 2008 SQL Server 2005 SQL Server 2016 Database mirroring can be used in conjunction with replication to improve availability for the publication database. Database mirroring involves two copies of a single database that typically reside on different computers. At any given time, only one copy of the database is currently available to clients. This copy is known as the principal…