|
Server IP : 127.0.0.1 / Your IP : 127.0.0.1 Web Server : Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.6.3 System : Windows NT WIN-R7LTCC7BPLI 6.3 build 9200 (Windows Server 2012 R2 Datacenter Edition) i586 User : GerbangSIPAD ( 0) PHP Version : 5.6.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF Directory (0777) : C:/Windows/SysWOW64/wbem/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
//------------------------------------------------
// RSOP_PushPrinterConnectionsPolicySetting
// Comment: Abtraction for PPC extension policy data
//------------------------------------------------
// During setup, run twice
// mofcomp -N:\\.\root\RSOP\computer "RsopSchema.mof"
// mofcomp -N:\\.\root\RSOP\user "RsopSchema.mof"
//
#pragma autorecover
#pragma namespace("\\\\.\\root\\RSOP\\computer")
[
Locale( 0x409 ),
Description("Policy object for PPc")
]
class RSOP_PushPrinterConnectionsPolicySetting: RSOP_PolicySetting
{
[
key,
Description("Inherited from RSOP_PolicySetting"),
Read,
DisplayName("ID")
]
string id;
[
key,
Description("Inherited from RSOP_PolicySetting"),
Read,
DisplayName("Precedence")
]
uint32 precedence;
[
Description("Printer name,"),
Read,
DisplayName("Printer name")
]
string printerName = "";
[
Description("Short server name"),
Read,
DisplayName("Server name")
]
string serverName = "";
[
Description("Short server name"),
Read,
DisplayName("Network name")
]
string uncName = "";
[
ValueMap {"1", "2"},
Values { "User connection", "Machine connection"},
Description("Whether the the connection is applied per machine, per user"
"1 = User, 2 = Machine."),
Read,
DisplayName("Connection Type")
]
uint32 ConnectionType = 1;
[
Description("Indicates whether the print connection"
"has been deleted."),
Read,
DisplayName("Is deleted")
]
boolean deleted = false;
[
Description("The final result of pushed printer connection. 0 indicate success"),
Read,
DisplayName("PushResult")
]
uint32 PushResult;
};