IADsFileServiceOperations 인터페이스(iads.h)
IADsFileServiceOperations 인터페이스는 IADsServiceOperations에서 상속되는 이중 인터페이스입니다. 네트워크를 통해 파일 서비스를 관리하기 위해 IADsServiceOperations 인터페이스에 노출되는 기능을 확장합니다. 특히 파일 서비스의 열린 리소스 및 활성 세션을 유지 관리하고 관리하는 역할을 합니다.
상속
IADsFileServiceOperations 인터페이스는 IDispatch, IAD 및IADsServiceOperations에서 상속됩니다. IADsFileServiceOperations 에는 다음과 같은 유형의 멤버도 있습니다.
메서드
IADsFileServiceOperations 인터페이스에는 이러한 메서드가 있습니다.
IADsFileServiceOperations::Resources IADsFileServiceOperations::Resources 메서드는 이 파일 서비스에서 현재 열려 있는 리소스를 나타내는 리소스 개체 컬렉션의 IADsCollection 인터페이스에 대한 포인터에 대한 포인터를 가져옵니다. |
IADsFileServiceOperations::Sessions IADsFileServiceOperations::Sessions 메서드는 이 파일 서비스의 현재 열려 있는 세션을 나타내는 세션 개체의 컬렉션에서 IADsCollection 인터페이스에 대한 포인터에 대한 포인터를 가져옵니다. |
설명
파일 서비스 작업 개체에 바인딩하려면 다음 코드 예제와 같이 호스트 컴퓨터에서 "LanmanServer" 서비스를 식별하는 ADsPath 문자열을 사용합니다.
Dim fso As IADsFileServiceOperations
On Error Resume Next
' Replace aDomain with the domain that the computer is located on.
' Replace aComputer with the name of the computer.
Set fso = GetObject("WinNT://aDomain/aComputer/LanmanServer")
이 시점에서 파일 서비스 개체를 서비스 개체로 처리하여 IADsServiceOperations 메서드를 파일 서비스 개체에 적용할 수 있습니다. 예를 들어 파일 서비스의 작동 상태 검사하거나, 파일 서비스를 시작 또는 중지하거나, 암호를 변경할 수 있습니다.
그러나 IADsFileServiceOperations 인터페이스를 사용하면 파일 서비스의 열린 리소스 및 활성 세션으로 작업할 수 있습니다. 다음 예제를 참조하세요.
For Each r in fso.Resources
MsgBox r.User
MsgBox r.Path
MsgBox r.LockCount
Next
활성 세션 및 열린 리소스에 대한 자세한 내용은 IADsSession 및 IADsResource를 참조하세요.
요구 사항
지원되는 최소 클라이언트 | Windows Vista |
지원되는 최소 서버 | Windows Server 2008 |
대상 플랫폼 | Windows |
헤더 | iads.h |