> get-agent|export-csv -notype c:\scomagents.csv

 

원하는 필드만 검색할때

> get-agent|select property1,property2|export-csv -notype c:\scomagents.csv

ex) 호스트명만 검색 

> get-agent|select name|export-csv -notype c:\scomagents.csv



Unix 경우

Get-MonitoringClass -Name "Microsoft.Unix.Computer" | Get-MonitoringObject |Export-Csv c:\ClientListUnix.csv

Posted by no1ss
,

실행창 -> gpedit.msc

로컬그룹정책 편집기 -> 컴퓨터 구성 -> 관리템플릿 -> windows 구성요소 -> 터미널 서비스 -> 원격 데스크톱 세션 호스트 -> 연결 -> 연결개수 제한 편집

연결개수 제한에서 '사용' 선택후 옵션에서 TS 최대허용 연결 에 999999(최대) 지정


로컬그룹정책 편집기 -> 컴퓨터 구성 -> 관리템플릿 -> windows 구성요소 -> 터미널 서비스 -> 원격 데스크톱 세션 호스트 -> 연결 -> 원격 데스크톱 서비스 사용자를 하나의 원격 데스크톱 서비스 세션으로 제한

편집창에서 구성되지 않음에서 사용안함으로 체크 및 적용


cmd -> gpupdate /force 

정책 업데이트


'윈도우' 카테고리의 다른 글

VHDX -> VHD로 변환하기  (0) 2013.05.08
NetBIOS와 IP 주소의 차이점  (1) 2013.01.14
포트 사용 확인 명령어 netstat  (0) 2013.01.14
윈도우 계정 관리 명령어 정리  (0) 2012.03.28
VHD에 윈도우서버 2008 설치  (0) 2012.03.28
Posted by no1ss
,

출처 http://thoughtsonopsmgr.blogspot.kr/2013/02/om12-sp1-operations-manager-shell.html


OM12 (SP1) many SCOM 2007 PS CMDLETS are renamed. This is a list of those CMDLETS. Bookmark this posting so you always have them at hand.

SCOM 2007OM12
Add-ConnectorToTierAdd-SCOMTierConnector
Add-RemotelyManagedComputerAdd-SCOMAgentlessManagedComputer
Add-UserToUserRoleSet-SCOMUserRole
Approve-AgentPendingActionApprove-SCOMPendingManagement
Disable-NotificationSubscriptionDisable-SCOMNotificationSubscription
Disable-RuleDisable-SCOMRule
Enable-NotificationSubscriptionEnable-SCOMNotificationSubscription
Enable-RuleEnable-SCOMRule
Export-ManagementPackExport-SCOMManagementPack
Get-AgentGet-SCOMAgent
Get-AgentPendingActionGet-SCOMPendingManagement
Get-AlertGet-SCOMAlert?
Get-AlertHistoryGet-SCOMAlertHistory
Get-ConnectorGet-SCOMConnector
Get-DefaultSettingGet-SCOM<SettingName>Setting
Get-DiagnosticGet-SCOMDiagnostic
Get-DiscoveryGet-SCOMDiscovery
Get-EventGet-SCOMEvent
Get-FailoverManagementServerGet-SCOMParentManagementServer
Get-GatewayManagementServerGet-SCOMGatewayManagementServer
Get-MaintenanceWindowGet-SCOMMaintenanceMode?
Get-ManagementGroupConnectionGet-SCOMManagementGroupConnection
Get-ManagementPackGet-SCOMManagementPack
Get-ManagementServerGet-SCOMManagementServer
Get-MonitorGet-SCOMMonitor
Get-MonitorHierarchyGet-SCOMMonitor
Get-MonitoringClassGet-SCOMClass
Get-MonitoringObjectGet-SCOMClassInstance
Get-MonitoringObjectGroupGet-SCOMGroup
Get-NotificationActionGet-SCOMNotificationChannel
Get-NotificationEndpointGet-SCOMNotificationChannel
Get-NotificationRecipientGet-SCOMNotificationSubscriber
Get-NotificationSubscriptionGet-SCOMNotificationSubscription
Get-OverrideGet-SCOMOverride
Get-OperationsManagerCommandGet-SCOMCommand
Get-PrimaryManagementServerGet-SCOMParentManagementServer
Get-RecoveryGet-SCOMRecovery
Get-RelationshipClassGet-SCOMRelationship
Get-RelationshipObjectGet-SCOMRelationshipInstance
Get-RemotelyManagedComputerGet-SCOMAgentlessManagedComputer
Get-ResultantCategoryOverrideGet-SCOMOverrideResult
Get-ResultantRuleOverrideGet-SCOMOverrideResult
Get-ResultantUnitMonitorOverrideGet-SCOMOverrideResult
Get-RootManagementServerGet-SCOMRMSEmulator
Get-RuleGet-SCOMRule
Get-RunAsAccountGet-SCOMRunAsAccount
Get-TaskGet-SCOMTask
Get-TaskResultGet-SCOMTaskResult
Get-UserRoleGet-SCOMUserRole
Install-AgentInstall-SCOMAgent
Install-AgentByNameInstall-SCOMAgent
Install-ManagementPackImport-SCOMManagementPack
New-LdapQueryDiscoveryCriteriaInstall-SCOMAgent
New-MaintenanceWindowStart-SCOMMaintenanceMode
New-ManagementGroupConnectionNew-SCOMManagementGroupConnection
New-TierAdd-SCOMTieredManagementGroup
New-WindowsDiscoveryConfigurationInstall-SCOMAgent
Reject-AgentPendingActionDeny-SCOMPendingManagement
Remove-ConnectorFromTierRemove-SCOMTierConnector
Remove-DisabledMonitoringObjectRemove-SCOMDisabledClassInstance
Remove-ManagementGroupConnectionRemove-SCOMManagementGroupConnection
Remove-RemotelyManagedComputerRemove-SCOMAgentlessManagedComputer
Remove-TierRemove-SCOMTieredManagementGroup
Resolve-AlertSet-SCOMAlert
Set-AlertDestinationSet-SCOMAlert
Set-DefaultSettingSet-SCOM<SettingName>Setting
Set-ManagementServerSet-SCOMParentManagementServer
Set-ProxyAgentSet-SCOMAgentlessManagedComputer
Start-DiscoveryInstall-SCOMAgent
Start-TaskStart-SCOMTask
Uninstall-AgentUninstall-SCOMAgent
Uninstall-ManagementPackRemove-SCOMManagementPack

Posted by no1ss
,