2025-11-28 00:35:46 +09:00

51 lines
2.4 KiB
C++

// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright (c) Microsoft Corporation. All rights reserved
/*
Assumptions:
1) There exists a scope 10.0.0.0
*/
#include<stdio.h>
#include<windows.h>
#include<dhcpsapi.h>
int __cdecl main(void)
{
LPWSTR pwszServer = NULL; // Server IP Address, a value of NULL signifies the current server (where program is executed)
DWORD dwSubnet = 0xa000000; //(10.0.0.0) Subnet address
DWORD dwError = ERROR_SUCCESS;// Variable that holds the error code
BOOL bPolicyActivated = TRUE;
// DhcpV4QueryPolicyEnforcement sets bPolicyActivated to TRUE if policies are enabled for the scope "dwSubnet" on the server, otherwise
// bPolicyActivated is set to FALSE.
dwError = DhcpV4QueryPolicyEnforcement(
pwszServer, // Server IP Address, a value of NULL means the current server (where the program is executed)
(dwSubnet == 0), // fGlobalPolicy, signifies whether the policy enforcement is queried for server or a specific scope
dwSubnet, // Subnet Address
&bPolicyActivated //PBOOL to hold the results of whether the policies are enabled or not
);
if(ERROR_SUCCESS != dwError)
{
wprintf(L"DhcpV4QueryPolicyEnforcement failed with Error = %d\n", dwError);
return 0;
}
//DhcpV4SetPolicyEnforcement sets the policy enforcement for the scope "dwSubnet" on the server.
dwError = DhcpV4SetPolicyEnforcement(
pwszServer, // Server IP Address, a value of NULL means the current server (where the program is executed)
(dwSubnet == 0), // fGlobalPolicy, signifies whether the policy enforcement is getting set for server or a specific scope
dwSubnet, // Subnet Address
((bPolicyActivated==TRUE)?FALSE:TRUE)// Policy is to be enabled or disabled.
);
if(ERROR_SUCCESS != dwError)
{
wprintf(L"DhcpV4SetPolicyEnforcement failed with Error = %d\n", dwError);
return 0;
}
return 0;
}