Bulk-create printer objects on windows 2008 R2 x64 print servers using Windows PowerShell

Hi,
I have an issue on a 2008 Server R2 x64 when trying to create a printer with this Powershell script:
function CreatePrinter {
$server = $args[0]
$print = ([WMICLASS]"\\$server\ROOT\cimv2:Win32_Printer").createInstance()
$print.drivername = $args[1]
$print.PortName = $args[2]
$print.Shared = $true
$print.Sharename = $args[3]
$print.Location = $args[4]
$print.Comment = $args[5]
$print.DeviceID = $args[6]
$print.Put()
function CreatePrinterPort {
$server =  $args[0]
$port = ([WMICLASS]"\\$server\ROOT\cimv2:Win32_TCPIPPrinterPort").createInstance()
$port.Name= $args[1]
$port.SNMPEnabled=$false
$port.Protocol=1
$port.HostAddress= $args[2]
$port.Put()
$printers = Import-Csv c:\printers.csv
foreach ($printer in $printers) {
CreatePrinterPort $printer.Printserver $printer.Portname $printer.IPAddress
CreatePrinter $printer.Printserver $printer.Driver $printer.Portname $printer.Sharename $printer.Location $printer.Comment $printer.Printername
The printer port creation work fine, but I have this error on the printer creator:
Exception calling “Put” with “0″ argument(s): “Generic failure ”
At C:\temp\createprinter.ps1:53 char:12
+ $print.Put <<<< ()
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : DotNetMethodException
Note: I first install the drivers manually.
Then i have tried with several win32 drivers and the issue is always the same.
I have tried on windows 2003 and it works like a charm…
Any idea ?
Help would be appreciated

I just ran through these commands on 2008 R2 Enterprise with no issues. I would try adding the printer with commands outside of the function to narrow it down to a problem with how the arguments are being passed, or if it's something with the driver being
specified.
PS C:\> $port = [wmiclass]"Win32_TcpIpPrinterPort"
PS C:\> $newPort = $port.CreateInstance()
PS C:\> $newPort.name = "IP_192.168.1.21"
PS C:\> $newPort.Protocol = 1
PS C:\> $newPort.HostAddress = "192.168.1.21"
PS C:\> $newPort.PortNumber = "9100"
PS C:\> $newPort.Put()
Path : \\.\root\cimv2:Win32_TCPIPPrinterPort.Name="IP_192.168.1.21"
RelativePath : Win32_TCPIPPrinterPort.Name="IP_192.168.1.21"
Server : .
NamespacePath : root\cimv2
ClassName : Win32_TCPIPPrinterPort
IsClass : False
IsInstance : True
IsSingleton : False
PS C:\> $wmiPrinter = [wmiclass]"Win32_Printer"
PS C:\> $newPrinter = $wmiPrinter.CreateInstance()
PS C:\> $newPrinter.DriverName = "HP LaserJet 4100 Series PCL6"
PS C:\> $newPrinter.PortName = "IP_192.168.1.21"
PS C:\> $newPrinter.DeviceID = "TestPrinter"
PS C:\> $newPrinter.Put()
Path : \\.\root\cimv2:Win32_Printer.DeviceID="TestPrinter"
RelativePath : Win32_Printer.DeviceID="TestPrinter"
Server : .
NamespacePath : root\cimv2
ClassName : Win32_Printer
IsClass : False
IsInstance : True
IsSingleton : False
PS C:\>

Similar Messages

  • Hp1022n printer doesn't working on windows 2008 R2 x64 via RDP from windows 7

    Dear Sir,
    i have a network of some windows7 and some server 2008 r2 Terminal Services,  There is
    a hp 1022n  printer . when i print locally from windows7 , the
    print comes very smoothly but no printing from windows Server 2008 R2 via RDP. i had installed driver for hp
    1022n + (windows 7 x64) on server 2008 r2 but it  still doesnt print.
    note there are other printer installed (via TCP/IP ,hp jetdirect printing) and they working finely on
    server 2008r2.
    so give me a stable solution for printing on hp 1022n + printer via RDP server from windows 7

    Hi Mahya,
    Thank you for posting in Windows Server Forum.
    Did you receive any particular error for your issue?
    Please check the link provided by Hari, you can use RD Easy Print driver for server 2008 R2.In addition, if possible try using Universal print driver for your case. 
    Using Remote Desktop Easy Print in Windows 7 and Windows Server 2008 R2
    http://blogs.msdn.com/b/rds/archive/2009/09/28/using-remote-desktop-easy-print-in-windows-7-and-windows-server-2008-r2.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Windows 2008 Group Policy not working in Windows 8.1

    Hi ,
    We found that the GPO settings created in Windows 2008 is not working in a Windows 8.1 machine.
    One example is the proxy settings.
    We confirmed from gpresult that the GPO is in the list but checking the actual proxy settings, it is not applied.
    Regards,
    Jhun

    Hi,
    How did we configure the proxy settings, using Internet Explorer Maintenance? If it is this case, just as Martin suggested, we can’t use IEM to manage
    IE 10 and IE 11.  However, we can configure the proxy setting via Group Policy Preferences (GPP).
    Regarding this point, the following blog can be referred to for more information.
    Configuring Internet Explorer 10′s
    Proxy Via Group Policy
    http://johnfail.wordpress.com/2013/06/15/configuring-internet-explorer-10s-proxy-via-group-policy/
    In addition, when we use this GPP extension, pay attention to GPP F5-F8 keys.
    Regarding this point, the following blog can be referred to for more information.
    Group Policy Preferences F5 F6 F7 F8 “documentation”
    http://msitpros.com/?p=1014
    Please Note: Since the above two websites are not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy
    of this information.
    In addition, regarding the deprecation of IEM, the following article can be referred to for more information.
    Appendix B: Replacements for Internet Explorer Maintenance
    http://technet.microsoft.com/en-us/library/jj890998.aspx
    Best regards,
    Frank Shen

  • Best practice for installation oracle 11g rac on windows 2008 server x64

    hello!
    can somebody tell me a good book or an other kind of literature regarding "best practice for installation oracle 11g rac on windows 2008 server x64"? thx in advance!
    best regards,
    christian

    Hi Christian,
    Check this on MOS
    *RAC Assurance Support Team: RAC Starter Kit and Best Practices (Windows) [ID 811271.1]*
    https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&doctype=BULLETIN&id=811271.1
    DOC Modified: 14-DEC-2010
    Regards,
    Levi Pereira

  • Certification for Windows 2008 R2 x64

    Hi,
    My customer wants to know if OEM 11g Grid Control R1 is supported to be installed (Repository, OMS and Agents) on Windows 2008 R2 x64. Repository will be on DB 11gR2 to monitor OFMW 11gR1 components (11.1.1.3) which are running with Sun JDK 1.6 64-bits).
    Certification Matrix (Doc ID 412431.1) in My Oracle Support seems to be not updated as it does not shows OMS 11g, only OMS 10gR3 and R2 are available.
    Is there a date for this support/availability?
    Thanks,
    Fernando.

    My customer wants to know if OEM 11g Grid Control R1 is supported to be installed (Repository, OMS and Agents) on Windows 2008 R2 x64. Repository will be on DB 11gR2 to monitor OFMW 11gR1 components (11.1.1.3) which are running with Sun JDK 1.6 64-bits).
    OMS 11G is not available for Windows 64 bit. However you can use 64 bit windows for repository databases.
    Certification Matrix (Doc ID 412431.1) in My Oracle Support seems to be not updated as it does not shows OMS 11g, only OMS 10gR3 and R2 are available.Please select 11G OMS from the dropdown , certification information for 11G is also available in the note.
    Is there a date for this support/availability?Please keep checking otn.oracle.com for availability.
    Regards
    Rajesh

  • Jinitiator & IE8 On Windows 2008 R2 x64 Server - Please Help!

    Hello All -
    I am wrapping up configuration of a Citrix Xenapp server for a presentation to my manager. The ONLY thing that I cannot get working is jinitiator for our Oracle apps. It is running on IE8 on WIndows 2008 R2 x64.
    I have done a lot of research and replace jvm.dll from Java, but haven't been able to get that to work. My guess is that it's either because I'm downloading the incorrect version of Java (which I extract the .jvm file from) or that i'm running x64.
    Please give any suggestions to help. I've spent hours on this project and if I cannot figure this out and have to go back to a different version of OS, then it's all lost -
    Thanks!

    801574 wrote:
    Great - Thanks.
    Will this need to be something that it installed/configured on my machine with IE8 installed or will changes need to be made to the actual Oracle server? We don't manage the server so hopefully it will be the client end.
    Thank YouAs long as you have the necessary version of JRE installed, you should be good. Necessary application changes/configuration must be made in order for it to use JRE.
    Srini

  • Who i print a documento at app Adobe. I am using Windows 8

    Who i print a documento at app Adobe. I am using Windows 8. I do not like the way app adobe shows the page.

    I have the same problem
    Lightroom 5.6 crashes when I enter the printmodule.Windows 8.1 64-bit

  • Just FYI, new blog post "Deploy BranchCache Content and Hosted Cache Servers Using Windows PowerShell"

    Just FYI, new blog post "Deploy BranchCache Content and Hosted Cache Servers Using Windows PowerShell" at
    http://aka.ms/le85n3
    Thanks -
    James McIllece

    Great to see new BranchCache content out there!
    We created a BranchCache info page to try to get all of the relevant info into one place for V1 and 2
    http://2pintsoftware.com/microsoftbranchcache
    thanks
    Phil
    Phil Wilcock http://2pintsoftware.com @2pintsoftware

  • I have an iPad 2 and iPhone 4 and for them I use I cloud I have also 1 pc windows and at work place I use windows pc ; until now my files are stored on an external disk drive could' I use iCloud to perform the backup of my external disk drive ? Thanks

    I have an iPad 2 and iPhone 4 and for them I use I cloud I have also 1 pc windows and at work place I use windows pc ; until now my files are stored on an external disk drive could' I use iCloud to perform the backup of my external disk drive ? Thanks
    Loredano

    These are the options you have.
    Budget $1299.
    http://www.apple.com/macbookair/
    http://www.apple.com/macbookpro/
    Best.

  • Windows 2008 R2 KMS server not activating Windows 8.1

    We have a 2008 R2 server running VAMT 3.1 and with KB2757817 installed. I added our Windows Server 2012 and Windows 2012 R2 KMS product keys to the KMS host as well as our Windows 8.1 KMS key, and restarted the system.
    So that when I look at the list of Product Keys I see the following keys:
    Windows Server 2012 RTM ServerDataCenter;ServerStandard;ServerMultiPointStandard;ServerMultiPointPremium Volume:CSVLK
    Win 8.1 RTM Enterprise;EnterpriseN;Professional;ProfessionalN Volume:CSVLK
    Windows Server 2012 R2 RTM ServerDataCenter;ServerStandard Volume:CSVLK
    Windows Server 2008 R2 RTM Std and Ent Volume:CSVLK (KMS_B)
    Windows 7 All Volume Editions Volume:CSVLK
    I then go to one of our Windows 8.1 systems and run the following commands:
    cscript c:\windows\system32\slmgr.vbs /skms <servername>
    cscript C:\windows\system32\slmgr.vbs /ato
    and I get the following error message:
    "Error: 0xC004F074 The Software Licensing Service reported that the computer could not be activated. No Key Management Service (KMS) could be contacted. Please see the Application Event Log for additional information."
    Meanwhile Windows 7 clients still activate without a problem.
    On the KMS host I run slmgr /dlv and get the following:
    Name: Windows Server(R), ServerStandard edition
    Description: Windows Operating System - Windows Server(R), VOLUME_KMS_R2_B channel
    Activation ID: xxxx
    Application ID: xxx
    Extended PID: xxx
    Installation ID: xxx
    Processor Certificate URL:
    http://go.microsoft.com/fwlink/?LinkID=88342
    Machine Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88343
    Use License URL: http://go.microsoft.com/fwlink/?LinkID=88345
    Product Key Certificate URL:
    http://go.microsoft.com/fwlink/?LinkID=88344
    Partial Product Key: xxxx
    License Status: Licensed
    Remaining Windows rearm count: 3
    Trusted time: 3/26/2014 9:56:25 AM
    I've seen in other articles that the description should be
    "VOLUME_KMS_2012-R2" channel instead of "VOLUME_KMS_R2_B channel"
    My question is how do I get the 2008 R2 KMS host to activate Windows 8.1 clients?
    Did I miss a step in adding the 2012 R2 KMS key, and if I did what step did I miss?

    We have a 2008 R2 server running VAMT 3.1 and with KB2757817 installed. I added our Windows Server 2012 and Windows 2012 R2 KMS product keys to the KMS host as well as our Windows 8.1 KMS key, and restarted the system.
    So that when I look at the list of Product Keys I see the following keys:
    Windows Server 2012 RTM ServerDataCenter;ServerStandard;ServerMultiPointStandard;ServerMultiPointPremium Volume:CSVLK
    Win 8.1 RTM Enterprise;EnterpriseN;Professional;ProfessionalN Volume:CSVLK
    Windows Server 2012 R2 RTM ServerDataCenter;ServerStandard Volume:CSVLK
    Windows Server 2008 R2 RTM Std and Ent Volume:CSVLK (KMS_B)
    Windows 7 All Volume Editions Volume:CSVLK
    I then go to one of our Windows 8.1 systems and run the following commands:
    cscript c:\windows\system32\slmgr.vbs /skms <servername>
    cscript C:\windows\system32\slmgr.vbs /ato
    and I get the following error message:
    "Error: 0xC004F074 The Software Licensing Service reported that the computer could not be activated. No Key Management Service (KMS) could be contacted. Please see the Application Event Log for additional information."
    Meanwhile Windows 7 clients still activate without a problem.
    On the KMS host I run slmgr /dlv and get the following:
    Name: Windows Server(R), ServerStandard edition
    Description: Windows Operating System - Windows Server(R), VOLUME_KMS_R2_B channel
    Activation ID: xxxx
    Application ID: xxx
    Extended PID: xxx
    Installation ID: xxx
    Processor Certificate URL:
    http://go.microsoft.com/fwlink/?LinkID=88342
    Machine Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88343
    Use License URL: http://go.microsoft.com/fwlink/?LinkID=88345
    Product Key Certificate URL:
    http://go.microsoft.com/fwlink/?LinkID=88344
    Partial Product Key: xxxx
    License Status: Licensed
    Remaining Windows rearm count: 3
    Trusted time: 3/26/2014 9:56:25 AM
    I've seen in other articles that the description should be
    "VOLUME_KMS_2012-R2" channel instead of "VOLUME_KMS_R2_B channel"
    My question is how do I get the 2008 R2 KMS host to activate Windows 8.1 clients?
    Did I miss a step in adding the 2012 R2 KMS key, and if I did what step did I miss?
    It's not possible to add Windows Vista/7/8.0/8.1 KMShost pkeys into a WindowServer OS - they will not install, because the KMShost pkey must activate the host OS as well as perform KMShost functions, and, a WindowsClientOS pkey will never be accepted on
    a WindowsServerOS.
    Similarly, you can't install multiple Windows pkeys - only the last (acceptable) pkey will be kept - all previous pkeys will be displaced/removed (last in wins).
    Your slmgr output clearly shows that you have the WS2008R2 KMShost pkey, in place. You need to install the WS2012R2 KMshost pkey to get your 8.1 KMSclients to activate.
    KMShost pkeys are "cumulative", i.e. WS2012R2 KMShost pkey will activate all lower versions of both WindowsServer and WindowsClient OS.
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Using Windows 2008 R2 RD Session Hosts in Windows 2012 RD Deployments

    Just a couple of observations from our attempt to deploy Windows 2008 R2 RD Session Hosts as part of a Windows 2012 RD Deployment. Hopefully these save someone the angst of not finding answers in other documentation.
    1. Our first hurdle was trying to add a Windows 2008 R2 server (RD02) as a Session Host in the Remote Desktop Services area in Server Manager on our Windows 2012 RD Deployment server (RDCB01), which had the Connection Broker, Web Access and Session
    Host role services installed. After some side-tracking through AD issues, we eventually discovered that we had to manually add RD02 to the list of servers to manage in Server Manager on RDCB01. Then it was visible and could be selected.
    2. Now that we could, we tried to actually add the RD02 Windows 2008 R2 Session Host to the 2012 Deployment. This failed the previously unheard of compatibility tests with the error "Compatibility check failed" "The server is not running at least {0}". A
    list of requirements is shown:
    You will not be able to proceed with the installation unless ALL the following criteria are met:
    The server must be available by using Windows PowerShell remotely.
    The server must be running at least Windows Server 2012.
    The currently logged on user must be a member of the local Administrators group on the server.
    The server must not have a pending start.
    We were also concerned that we could not change many of the properties of Published Applications on our 2012 Publishing server. In our case changing an icon was critical for user acceptance to distinguish between application functions.
    It seems RDS is an all or nothing approach between 208 R2 and 2012 versions. The only thing we were able to get going in time was some limited Published Application capability.
    I agree with other posters in their assessments of wholesale changes to RDS in 2012, and a lack of readily available definitive information. 

    Hi,
    It seems that no official documents suggest that 2008 r2 could be involved with the 2012 rds infra.Even on the server 08 and 08r2,i don't suggest mixing them for potential incompatibility.
    Any further discussions about this issue are welcomed here for all of you.
    Regards,
    Clarence
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • How do I solve  windows error 2? I'm using windows 7

    I am unable to access I tunes. The message "Windows error 2" appears and the message "Apple application was not found". It tells me to uninstall and then install I tunes, but the system won't allow that. I am using windows 7

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The section Install missing components has advice on breaking down the iTunes installer into the individual .msi files which might prove useful if Apple Application Support won't install normally.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for performance issues or compatibility with third party software.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Windows 2008 Standard SP2 inplace upgrade to Windows Server 2008 R2 Standard SP1 failing

    Hi All,
    I'm encountering an issue with performing an in-place upgrade of Windows Server 2008 SP2 to Windows Server 2008 R2 SP1.
    Server details:
    Virtual machine running on VMware ESXi 5.
    Uninstalled AV and backup software
    Domain controller also running AD Certificate Services#
    UAC disabled
    Running setup as a domain admin
    When launching setup, the process completes "Copying Windows Files". After a few seconds or being on "Gathering files, settings and programs 0%", an error appears on screen -
    Windows installation encountered an unexpected error. Verify that the installation sources are accessible, and restart the installation.
    Error code: 0xC0000005
    Errors and information up to the fatal errors in the setupact.log setup summary:
    2013-04-28 19:26:35, Info                  MIG    Loading replacement manifest data for Microsoft-Windows-WMI-Core
    2013-04-28 19:26:35, Info                  MIG    Loading replacement manifest data for Microsoft-Windows-WSRM-Service
    2013-04-28 19:26:35, Info       [0x080841] MIG    UPGCSIAgent: Enumerating installed manifest source using C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.0.6002.18005_none_676975d87cc9b6e6\wcp.dll
    2013-04-28 19:26:35, Warning    [0x080405] MIG    EnablePrivilege: AdjustTokenPrivileges failed (Error:0x514)
    2013-04-28 19:26:35, Info                  CSI    00000001@2013/4/28:18:26:35.866 WcpInitialize (wcp.dll version 0.0.0.5) called (stack @0x7feeff78c85 @0x7fef1646a4e @0x7fef1646676 @0x7fef1647a53 @0x7fef164c291
    @0x7feedd728ba)
    2013-04-28 19:26:35, FatalError [0x090001] PANTHR Exception (code 0xC0000005: ACCESS_VIOLATION) occurred at 0x000007FEF00498CF in C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.0.6002.18005_none_676975d87cc9b6e6\wcp.dll (+00000000001498CF).
     Minidump attached (107516 bytes).
    2013-04-28 19:26:36, FatalError [0x090001] PANTHR Exception (code 0xC0000005: ACCESS_VIOLATION) occurred at 0x000007FEF00498CF in C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.0.6002.18005_none_676975d87cc9b6e6\wcp.dll (+00000000001498CF).
     Minidump attached (107788 bytes).
    The diagerr.xml has the two minidumps but they are just encoded straight into the xml file. Thanks for any assistance. /Ashley

    Hi,
    Generally such kind of issues are caused by third party programs such as CD burning programs, device driver etc.
    First please refer to this article to see if there is anything helpful:
    Guide for Upgrading to Windows Server 2008 R2
    http://technet.microsoft.com/en-us/library/ff972408(v=ws.10).aspx
    Meanwhile from the description, it mentioned a file under  C:\Windows\winsxs. Check the permission of the folder amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.0.6002.18005_none_676975d87cc9b6e6 and the file wcp.dll to see if the permission
    and ownership are correct compare with the other folders.
    Also as it provided 2 minidump files, you will need to use WinDBG to read the minidump files and see if there is any further information.
    http://support.microsoft.com/kb/315263
    TechNet Subscriber Support in forum |If you have any feedback on our support, please contact [email protected]

  • Windows 2008 r2 guests blue screen on Windows 2012 R2 Hyper-V Cluster with e5 2670-v2 processors

    Hello all,
    We have a new hyper-v infrastructure deployed in two brand new Dell R720 Servers with 384GB of Memory and dual Intel e5 2670-v2 processors. This infrastructure is replacing an existing hyper-v 2008 R2 and all the guests are being migrated to this new cluster.
    The issue we are seeing is our 2008 r2 guests blue screening ocasionally with 0x0000001a,0x0000004e or 0x00000050 bugchecks.
    All this guests are configured with dynamic memory and with the integration components up to date. These same guests were running with no problems in the hyper-v 2008r2 cluster.
    When searching i found this article from vmware that pretty much describes what we are facing:
    http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2073791
    Are you aware of the same problem with this kindd of hardware on windows 2012 r2 hyper-v?
    Thanks!
    Nuno Carvalho

    Meanwhile i found this May 2014 update on the intel specification of the CPU we are using:
    CA135 Incorrect Page Translation when EPT is enabled
    Problem:
    If EPT (Extended Page Tables) is enabled, then a complex sequence of internal processor events may result in unexpected page faults or use of incorrect page translations.
    Implication:
    Due to this erratum a guest may crash or experience unpredictable system behavior.
    Workaround:
    It is possible for the BIOS to contain a workaround for this erratum.
    Status:
    For the affected steppings, see the
    Summary Tables of Changes.
    This affects VMware as of the today update of the article i referenced in the first post, what about hyper-v?
    http://www.intel.com/content/dam/www/public/us/en/documents/specification-updates/xeon-e5-v2-spec-update.pdf
    Nuno Carvalho

  • Issue with VPN configuration in Windows 2008 r2 and 2012 Servers.

    Hello ,
    I hope you can help me to fix this issue, it's been 5 days since I a, trying to configure VPN in your 2008 and 2012 Servers. On both platform  (2008 and 2012) I am getting same error while configuring VPN (after role installation). 
    "Unable to load C:\Windows\System32\iprtrmgr.dll". So, I have removed IPv 6 entry from the registry and now able to start server (not sure what configuration it took automatically).  I tried to disable "Routing
    and Remote Access" service and got the same error while enabling "Routing and Remote Access" is running but VPN is still not functioning properly). 
    I am getting following error,
    ================================================
    Errors under the Event viewer (Remote access)
    1) --->>    CoId={DF744409-02D7-4FF4-AD24-504F0C83E1AB}: The user 10.0.0.1\chetan connected from 10.0.0.1 but failed an authentication attempt due to the following reason: The remote connection was denied because the user name and password
    combination you provided is not recognized, or the selected authentication protocol is not permitted on the remote access server.
    2) ----->>   CoId={DF744409-02D7-4FF4-AD24-504F0C83E1AB}: The user connected to port VPN3-127 has been disconnected because the authentication process did not complete within the required amount of time.
    Errors under the Event viewer (Remote access)
    3) ---->>  Network Policy Server denied access to a user.
    Contact the Network Policy Server administrator for more information.
    ================================================
    I am using (MS-CHAP v2) + EAP (Authentication Method).  Please let me know if you need any additional information. 
    Thank you,

    I Guess this thread is not related to SQL Server .User is facing issue because of network or may be due to OS.I guess I will move this into windows forum.
    Moderators please move to Network forum
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

Maybe you are looking for

  • Pre-Approved Credit Check Problem

    Okay. This is really a god awful nightmare. I am from Washington D.C. and I bought my phone in Boise, ID. At the store the gentleman asked me if i wanted to do the credit check there to save me a trip if I didn't get approved. I agreed and was approv

  • Link file name to a field in the form for save as button

    Does anyone know how to have the file name auto populate from a field in your form when using a button that does a save as function? Best regards, Michael

  • Rearranging Stack Icons?

    I'm wondering if there's a way to change the order in which the icons of a stack appear when it is opened in "Grid" view. So far, it seems as though they can only be arranged by name, kind, or date added/modified/created. I want to order them in a wa

  • Many processes consumed in  ECC server when executing infopackage in BW

    Hi, I know this question was asked many times but I can't figure out why it's not working. In fact, when i execute an infopackage, a lot of dialog process are used in the backend , making the system not accessible (windows server) I tried to make som

  • How can increase text/font size iMac late 2012

    I am a new iMac user so forgive my ignorance!  I cannot get the font size on my 21 inch iMAC to increase and am having a hard time reading the screen?  Can anyone tell me the way to do this please?