• Home
  • Cisco
  • Exchange
  • Linux
  • Navision
  • Network
  • Virtualization
  • Windows
  • About
  •  

    Reliability monitor – Empty on Windows 2008

    June 28th, 2012

    It is nice to see the history of crashed applications in Windows 2008.
    But when you start up “reliability monitor” it is empty – why is that?
    You have tried this: http://support.microsoft.com/kb/983386 but still no lock.
    Are you running as Domain Controller on the server, it could be a right issue of the service.

    Changed the RacTask on DCs to run “AS System” instead of “Local Service”.
    Can be found in “task scheduler” –> “Microsoft” –> “Windows” –> “RAC”
    RacTask


    Shared calendar – auto accept and reviver rights

    June 28th, 2012

    You have a shared calendar but the users cannot see the details and the appointments are not auto accepted.

    Set-CalendarProcessing User_in_Exchange -AutomateProcessing AutoAccept
    Set-MailboxFolderPermission User_in_Exchange:\Calendar -User Default -AccessRights Reviewer

    Set-CalendarProcessing -Identity recurce-cal -DeleteComments $false
    Set-CalendarProcessing -Identity recurce-cal -DeleteSubject $false

    get-CalendarProcessing -Identity recurce-cal| Format-List

    AutomateProcessing : AutoAccept
    AllowConflicts : False
    BookingWindowInDays : 180
    MaximumDurationInMinutes : 1440
    AllowRecurringMeetings : True
    EnforceSchedulingHorizon : True
    ScheduleOnlyDuringWorkHours : False
    ConflictPercentageAllowed : 0
    MaximumConflictInstances : 0
    ForwardRequestsToDelegates : True
    DeleteAttachments : True
    DeleteComments : False
    RemovePrivateProperty : True
    DeleteSubject : false
    AddOrganizerToSubject : True
    DeleteNonCalendarItems : True
    TentativePendingApproval : True
    EnableResponseDetails : True
    OrganizerInfo : True
    ResourceDelegates : {}
    RequestOutOfPolicy : {}
    AllRequestOutOfPolicy : False
    BookInPolicy : {}
    AllBookInPolicy : True
    RequestInPolicy : {}
    AllRequestInPolicy : False
    AddAdditionalResponse : False
    AdditionalResponse :
    RemoveOldMeetingMessages : True
    AddNewRequestsTentatively : True
    ProcessExternalMeetingMessages : False
    RemoveForwardedMeetingNotifications : False


    Backup ESXi configuration on host

    June 8th, 2012

    Backup ESXi configuration on host

    Vcli
    http://www.vmware.com/support/developer/vcli/

    Enter:
    C:\Program Files\VMware\VMware vSphere CLI\bin

    viccfg-cfgbackup.pl –server esxhost/IP –username root –password securepass -s c:\tmp\hostbackup.bak


    Show snapshots with powershell/powercli

    June 5th, 2012

    Get-VM | Get-Snapshot | select vm, name, sizemb, created
    or with grafical view:
    Get-VM | Get-Snapshot | select vm, name, sizemb, created | Out-gridview