Wednesday, January 26, 2022

I need to get into my invoicing system wincruise and wincruise say it works with romote desk top

I need to get into my invoicing system wincruise and wincruise say it works with romote desk top

I don't know how to make wincruise work in my remote desk top do I have to down load the desk top to my windows 10??


Reply:

Hi,

Personally, I am not familiar with the product mentioned above.

As you want to use the product within Remote Desktop session, then it needs to be installed on the target Windows system.

Best Regards,

Amy


Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.

  • Edited by Amy Wang_ Monday, November 7, 2016 8:47 AM

------------------------------------
Reply:

Hi,

Is further assistance required at the moment?

Best Regards,

Amy


Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.


------------------------------------

Scaled Remote desktop shadow connection is unusable

In the past when shadowing a remote desktop session, there were scrollbars and the session was not resized. Now in Windows 10 this is broken and useless. Imagine four monitors horizontally shrinked to one. The text is tiny and unreadable.
mstsc /v:IP_ADDRESS /shadow:1 /control /noconsentprompt


Scaled Remote desktop shadow session

Original post:

Scaled Remote desktop shadow connection is unusable

http://answers.microsoft.com/en-us/windows/forum/windows_10-start/scaled-remote-desktop-shadow-connection-is/28bd6d6e-2f51-446f-98ce-d7377f55034e


Reply:

Hi,

Would you please tell us that what's the version of the Windows 10 system?

Does this issue occur after anniversary update?

Best Regards,

Amy


Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.


------------------------------------
Reply:

Hi,

Would you please provide us with an update on the status of your issue?

Best Regards,

Amy


Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.


------------------------------------

remove-adgroupmember : Cannot find an object with identity

hello ,

I get this error  :

remove-adgroupmember : Cannot find an object with identity: 'mygroup' under: 'DC=corp,DC=ADN,DC=AAA,DC=com'. when I execut the script below   which is supposed to remove multiple users from multiple AD groups

$groups = get-content c:\removegroups.txt | ?{$_ -match '^Group1$|^Goup2$|^GroupCC'}  $names = get-content c:\users.txt  foreach ($aduser in $names) { foreach ($adgroups in $groups) { remove-adgroupmember $adgroups –members $aduser -confirm:$false } }  



Reply:
It would help if you formatted your code correctly:
$groups = get-content c:\removegroups.txt | ?{$_ -match '^Group1$|^Goup2$|^GroupCC'}  $names = get-content c:\users.txt  foreach ($aduser in $names){   foreach($group in $groups){   remove-adgroupmember $group.Trim() –members $aduser -confirm:$false    }    }


\_(ツ)_/


------------------------------------
Reply:

the same error :( 

user are in a sub folder of an organisation unit , it is possible that be  the problem ?


------------------------------------
Reply:

Please read the error:

Cannot find an object with identity: 'mygroup'

There is no such group with that name or samaccountname anywhere in AD. s Yogi Berra would say, "If it doesn't exist it doesn't exist". 


\_(ツ)_/


------------------------------------
Reply:
yes I understand that, but I really Have a group with this name 

------------------------------------
Reply:
$groups = get-content c:\groups.txt  $names = get-content c:\users.txt  foreach ($aduser in $names) {    foreach ($adgroups in $groups) {    Get-ADGroup -Filter "name -like '$adgroups'" | remove-adgroupmember –members $aduser -confirm:$false } }
I modified the code and I didn't get the error message :) , but when I verified nothing was deleted  :(

------------------------------------
Reply:
You do not have a group with that samaccountname. You have a group with that displayname. Get the samaccountnames into your file and your problems will go away.

\_(ツ)_/


------------------------------------
Reply:

how to get the samaccountnames  of a groupe please

get-adgroup  groupname   ??

  • Edited by Med_be Thursday, June 4, 2015 4:59 PM

------------------------------------
Reply:

Get-AdGroup | select name, samaccountname, Dispalyname

Get-AdGroup -Identity 'CN=Grioupname,OU=OUxxx,DC=domain,DC=com' | select name, samaccountname, Dispalyname


\_(ツ)_/


------------------------------------
Reply:

No objects in AD are identified by "Name". I know that is confusing, but "Name" (the value of the cn attribute for most objects) is only unique in the OU or container. Many objects in the domain can have the same "Name".

Objects in AD are usually identified by either their distinguishedName or sAMAccountName (also called the "pre-Windows 2000 logon name). The sAMAccountName applies only to security objects, like users, computers, and groups. Objects can also be identified by SID or GUID, but that is difficult. It is possible that Name and sAMAccountName match.

If all you have is the Name of the group (the Common Name), and it does not match the sAMAccountName, you could use the following:

Get-ADGroup -Filter {Name -eq "groupname"}

This will  return all groups with the Name and display sAMAccountName (and other attributes). There may be only one, but there could also be several or many groups in the domain with the name.

Richard Mueller - MVP Directory Services


------------------------------------
Reply:
thank you all for your help :-)

------------------------------------
Reply:
I'm updating this thread (if I can) if others who are having a similar problems to mind find this post.

This did put me in the wrong direction - multiple AD groups had changed display names from their SAM names, often due to misspelling.  Using attribute editor in AD Users & Computers allowed me to resolve my issues.

------------------------------------

Custom Pop Up Notification Using SCCM

Hello,

I need to deploy the custom notification to users using SCCM. 

Have the following script for PowerShell but it could be in any scripting language, just need to serve the purpose of displaying the custom popup notification on users machines :

==================================================================

[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")

$objNotifyIcon = New-Object System.Windows.Forms.NotifyIcon 

$objNotifyIcon.Icon = "D:\PopUp Notification\ABC.ico"
$objNotifyIcon.BalloonTipIcon = "Info" 
$objNotifyIcon.BalloonTipText = "Data Retrieving In Progress" 
$objNotifyIcon.BalloonTipTitle = "Retrieving" 

$objNotifyIcon.Visible = $True 
$objNotifyIcon.ShowBalloonTip(20000)

==================================================================

the concern with the above code is :

1) It doesnt remove the notification icon from the task bar 

It will create a new icon for every time you are running the code. how can we make sure that once the script is ran, this icon is removed from everywhere?

2) It references the D:\..... location for the ".ico" file to be used. I need to deploy this using SCCM, how could I customize this so it references this location under the package folder deployed using SCCM, i.e. if I copy the file in the package to be deployed, it should be able to reference that automatically and pick it up from there. 

3) Is there any way, we could use another file instead of ".ico" like ".bmp" etc.

Many Thanks

Vikram Midha


  • Edited by Vikram Midha Tuesday, October 18, 2016 5:06 AM
  • Changed type Bill_Stewart Friday, December 30, 2016 8:37 PM
  • Moved by Bill_Stewart Friday, December 30, 2016 8:37 PM This is not "scripts on demand"

Reply:

Did you try to search for? When I drop "powershell display gui systray" to the Google search I get following as the first hit:

https://bytecookie.wordpress.com/2011/12/28/gui-creation-with-powershell-part-2-the-notify-icon-or-how-to-make-your-own-hdd-health-monitor/

... hope it helps.


Grüße - Best regards

PS:> (79,108,97,102|%{[char]$_})-join''


------------------------------------
Reply:

Thanks for the link.

I was able to further modify the script to achieve the above queries of mine.

1) Under "$objNotifyIcon.BalloonTipText", I have a lot of information to be displayed but the balloon doesn't displays all of it. So, I believe we cannot extend the size of the notification but can use the "MouseClick" feature to assure that users can click on the balloon and it opens up a window displaying the information, which could be closed by the user or set to auto close in defined "minutes". I tried to use the balloon options for "mouse click" etc. but it doesnt gives the desired results.

Could you please assist with this?

2) Now, I would need to make sure that the script runs every day of the week (Mon-Fri) at a specified time, although I believe this could be achieved using SCCM but need to check if there is an option for this here as well.


------------------------------------
Reply:
Anyone?

------------------------------------
Reply:
Anyone?

Please keep in mind that this is a peer-to-peer support forum, and there is no SLA.


-- Bill Stewart [Bill_Stewart]


------------------------------------
Reply:

I was able to create script as was desired. 

The only thing which remains is to make sure that this is ran at a scheduled time.

I had set the option under SCCM to run this script at a specific time from Monday-Friday but the problem faced is, the system which are OFF or Locked out show this script the next time the user logs on to them. For Example - Lets say the script is set to run at 5pm for Mon-Fri, Now if a user logs off or switches OFF the system at 4pm, The script will show up at user's screen the next morning when he/she logs ON to the system. I have set the option to make sure that this is only ran at the specified time and only when a user is logged ON but it still runs the next available morning.

Please assist.


------------------------------------
Reply:

Please post you issue with the SCCM scheduler in the SCCM or Config Manager forum.


\_(ツ)_/


------------------------------------

Problem with Mount Drive on Windows Server 2012 R2

Hi,

Recently migrated an old Windows Server 2003 R2 DC/File to a new Windows Server 2012 R2 Foundation.

Now we have an unusual problem with mount drives on Users computers.

All Users have a mount drive with Letter Z:, the Public Folder on Server shares. As an example, one User has opened one file from the shared folder on Server, let say Z:\User_folders\Folder\File.XLS

When user is going to save the file after edit, Microsoft Excel or Word opens Windows Explorer and waits user prompt where to save the file.

Also some users have shortcuts to folders of the mount drive at their Desktop and sometimes when they try to open the folder, windows prompts the following error.

Restoring Network Connections

An error occured while reconnecting Z: to \\IP\User_folders
Microsoft Windows Network: The local device name is already in use.
The connection has not been restored

In that moment, user can ping the server and nslookup is working.

I've tested both mount the Share Folder with NETBIOS hostname and virtual IP Address.

From the Server side is Windows Server 2012 R2 Foundation Full Updated and from the clients side we have different versions of Windows-Office (Windows XP, Windows 8.1 - Office 2003 Professional Plus, Office 2007 Professional Plus).

Nice to say that before Server Migration we haven't this problem at all.

 

Wireless Authentication with NPS Machine Groups Policy

Hi

Long story short we have NPS setup with RADIUS client AP's to process wireless connection requests on our 2008R2 domain. Our Connection request and Network policies at present only contain a NAS Port Type 802.11 condition, which works fine. I am trying to restrict wireless access to computers that are part of the domain but as soon as I add a Machine Group condition which includes the Domain Computers group non of the computers can connect. I have seperately tested adding a User Group condition and this works fine. Any ideas on what could be wrong?

 

Thanks


Reply:

Hi,

 

Thanks for posting here.

 

Could you discuss how did you set the authentication on client side ? and have you specified authentication mode ?

For more information please refer to the link below:

 

Use Wireless Network (IEEE 802.11) Policies to Configure Wireless Client Computers

http://technet.microsoft.com/en-us/library/dd283034(WS.10).aspx

 

You may also start your deployment with following our guide:

 

802.1X Authenticated Wireless Deployment Guide

http://technet.microsoft.com/en-us/library/dd283093(WS.10).aspx

 

Thanks.

 

Tiger Li


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.

------------------------------------
Reply:

Hi

 

Current Group Policy client settings are:

 

Authentication Method        PEAP

Authentication Mode           User or Computer authentication

Cache user information for subsequent connections         Enabled

Security Settings

Authentication                                     WPA2
Encryption                                          AES
Use 802.1X                                         Enabled
Pairwise Master Key (PMK) Caching       Enabled
PMK Time-to-Live (minutes)                  720
Number of Entries in PMK Cache           128
Maximum Pre-authentication Failures     3

 

802.1X

Pairwise Master Key Caching               Enabled

PMK TTL                                            720

Number of entries in PMK Cache          128

 

Cheers

 

Chris


------------------------------------
Reply:

Hi there -

Are you using PEAP-MS-CHAPv2? Or are you using PEAP-TLS?

Do the client computers have your certification authority (CA) certificate installed in their Trusted Root Certification Authorities store for the Local Computer?

Thanks -

 


James McIllece

------------------------------------
Reply:
Do machine group policies only work with CHAPv2 or only TLS ? I have the same problem.. be glad to reconfigure... no real answers here... anyone ?
Steve Lithgow

------------------------------------
Reply:
Looks like Psycorp figured it out and posted on another site.. I'll give this a try as well hope psycorp doesnt mind me copying it here: I've tracked down the issue so thought I'd post it here for anyone else who might have a similar problem. Our issue was caused by the Authentication Mode in the Security Settings for the Wireless Network Connection that we had setup in Group Policy (Computer Configuration > Windows Settings > Security Settings > Wireless Network (802.11) Policies > "Your Network Policy") Originally the Authentication Mode was set to "User or Computer authentication", when this was changed to "Computer authentication" the Computer Account condition in the Network Policy in NPS was processed correctly and clients could connect. I can only assume that this is a bug as on further testing I found that when the Authentication Mode was set to "User or Computer authentication" NPS would process a User Account condition in the Network Policy correctly, but still refused to process the Computer Account condition properly.
Steve Lithgow

------------------------------------
Reply:
Sorry to dig this up, but will User Authentication not be processed within an NPS condition if the GPO is set to only Computer Authentication?

------------------------------------
Reply:
When policy is set to user and computer auth, the computer auth will occur when a user is not logged on to the computer. When a user logs in, it will switch and do user authentication.

------------------------------------

iOS Remote Desktop Bug (making it unusable)

iPad Pro, iOS 10.1.1

It's annoying enough that you cannot store different passwords for the same username per connection, but to have it pop up an error box because the password is incorrect, and for this popup to appear behind the keyboard so you cannot clear it, is making the app completely unusable.  You cannot dismiss the keyboard, and cannot click OK on the warning popup.

This app really needs tweaking.  Storing different passwords for connections, regardless of the username is important, but if we can't, then sort the popup out!



Reply:

Hi,

Thanks for your post.

When the warning popup, can you press the below button?

And what's the version of your RDC for IOS, is it up-to-date (8.1.27)?

Best Regards,

Alvin Wang


Please remember to mark the replies as answers if they help and unmark them if they provide no help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.


------------------------------------
Reply:

Hi,

Just checking in to see if the information provided was helpful. Please let us know if you would like further assistance.

Best Regards,

Alvin Wang


Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.


------------------------------------

Microsoft Desktop keeps crashing after 5 minutes of being logged on

My remote desktop keeps crashing after being on for 5 minutes. Any suggestions? Is this a result of the most recent update?

Reply:

Hi,

Thanks for your post.

To move on, please help to describe more details about your situation, including RDC version, source OS and target device/OS, related error messages so that we could make further analysis.

If there is any change before this problem happened? If so, try to undo the change and confirm the result.

Try to confirm that whether it is a source or destination device/OS related problem via connecting from different client.

Best Regards,

Alvin Wang


Please remember to mark the replies as answers if they help and unmark them if they provide no help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.


------------------------------------
Reply:

Hi,

Just want to confirm the current situations.

Please feel free to let us know if you need further assistance.

Best Regards,

Alvin Wang


Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.


------------------------------------

How to improve the performance for SharePoint 2010

How to improve the performance for SharePoint 2010

Reply:

Hi Victor,

There are various possible approaches to improve the performance for SharePoint 2010, please go through once following links

https://karinebosch.wordpress.com/my-articles/improving-performance-of-sharepoint-sites/ - This is very good link. Please have a look once.

https://blogs.msdn.microsoft.com/vrajas/2012/02/28/top-10-tips-for-improving-sharepoint-2010-performance/

http://apmblog.dynatrace.com/2015/03/24/5-tips-to-improve-sharepoint-web-part-performance/

Please let me know if details required on specific topic.


Thanks! Best Regards, Prasham Sabadra http://prashamsabadra.blogspot.in


------------------------------------
Reply:

Hi

It is hard to answer in general. Firstly, you need to find out what is the limiting factor for the performance on your system, and in general all performance issue may be broken down to the following hardware limitations:

  • CPU
  • Memory
  • Network Bandwidth
  • Disk IO Bandwidth
  • ...

So in the SharePoint farm, you also need to check on which machine the hardware is the limiting factor(SQL Server, WFE, Application Server, DC ...)

Also you could use performance monitor on all involved machines and check Memory, CPU, Network Bandwidth, Disk IO Bandwidth.

BTW, Network and disk queue length should be in the range of 0-1 for good performance.


  • Edited by Tina YiMVP Wednesday, November 9, 2016 8:36 AM

------------------------------------

Test

<marquee behavior="alternate" direction="down" height="200" style="border:solid;height:200px;width:250px;" width="250"><marquee behavior="alternate">Test </marquee> </marquee>

[string](0..21 | % {([char][int](22+
("5275778524449275827587
42505554247789249585").Substring(($_*2),2)))})`
-replace " "

LinkedIn:   

Note: Posts are 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.


Reply:
hello

MSDN Community Support
Please remember to click "Mark as Answer" the responses that resolved your issue, and to click "Unmark as Answer" if not. This can be beneficial to other community members reading this thread. If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.


------------------------------------
Reply:
test

MSDN Community Support
Please remember to click "Mark as Answer" the responses that resolved your issue, and to click "Unmark as Answer" if not. This can be beneficial to other community members reading this thread. If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.


------------------------------------

what&#39;s new GP in 1607

what's new gp in 1607

Reply:

Check this link:

https://technet.microsoft.com/en-us/itpro/windows/whats-new/whats-new-windows-10-version-1607


Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.


------------------------------------
Reply:
https://technet.microsoft.com/en-us/itpro/windows/manage/group-policies-for-enterprise-and-education-editions

Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.


------------------------------------
Reply:
Some gps can only use in Windows enterprise and education version.

Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.


------------------------------------

Windows 10 has the latest version as 14393.351

October 27, 2016—KB3197954 (OS Build 14393.351)
This update includes quality improvements. No new operating system features are being introduced in this update. Key changes include:
  • Improved reliability of Internet Explorer 11, Start, File Explorer, action center, graphics, and the Windows kernel.
  • Addressed issue that was causing System Center Operations Manager (SCOM) Management Console to crash in State view.
  • Addressed connectivity issue from a 32-bit application to a Remote Desktop Gateway that doesn't have HTTP tunneling enabled.
  • Addressed issue of updates not being restored when doing a system reset, even if those updates were permanently installed.
  • Addressed issue that was causing domain logon attempts to fail on a Windows 10 Pro device after upgrading from Windows 10 Home.
  • Addressed issue that was causing failed logon counts of non-admin users without network logon permissions to be counted as cumulative, resulting in devices going into BitLocker recovery more frequently.
  • Improved support for websites by updating the HTTP Strict Transport Security (HSTS) preload list.
  • Improved support for IT administrators using Group Policy to block users updating the operating system from Windows Update.
  • Improved reliability and stability of the notification framework for enabling contextual notifications in File Explorer.
  • Addressed an issue that prevented System Center Configuration Manager from performing inventory uploads via Background Intelligent Transfer Service (BITS) when Encrypting File System (EFS) has been disabled.
  • Addressed additional issues with USB, Wi-Fi, clustering, setup, Microsoft Edge, Internet Explorer 11, licensing, PowerShell, Component Object Model (COM), Windows kernel, graphics, and Bluetooth.
For more information about the complete list of affected files, see KB3197954.

Please remember to mark the replies as answers if they help and unmark them if they provide no help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.


Reply:

Hi,

It is weired.

Best regards


Please remember to mark the replies as an answers if they help and unmark them if they provide no help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com


------------------------------------
Reply:
test

Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.


------------------------------------
Reply:
test

Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.


------------------------------------
Reply:
good sharing

------------------------------------

Master Data Services Add-in for Excel Issue

I am trying to configure MDS in the Production server. I am running into isssues.

(I was able to do the whole process successfuly in my local system - Versions are same in the local and server - Only difference is local machine is windows 7 server is Windows 2008 R2)

I have installed SQL server 2012 Enterprise Version SP1. I am able to browse the MDS URL. User has got full permissions. When I try to access the MDS via Excel I get the below error.

Can any one help me please I have spent days on this withou any joy.

Error message

TITLE: Master Data Services Add-in for Excel
------------------------------

An error occurred while receiving the HTTP response to http://MYIPADDRESS/mds/service/service.svc/bhb. This could be due to the service endpoint binding not using the HTTP protocol. This could also be due to an HTTP request context being aborted by the server (possibly due to the service shutting down). See server logs for more details.

------------------------------
ADDITIONAL INFORMATION:

The underlying connection was closed: An unexpected error occurred on a receive. (System)

------------------------------

Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. (System)

------------------------------

An existing connection was forcibly closed by the remote host (System)

------------------------------
BUTTONS:

OK
------------------------------


Bn


Reply:

Hello,

We are having the same problem.

How did you fix the problem?

Thanks.


------------------------------------
Reply:

Are you able to connect to MDS service via Web URL from the same client? Do you provide the exact same URL to Excel Addin?

If yes, try to look at the log in Master Data Service, and it might provide a clue.

Thanks


------------------------------------
Reply:

Hello,

We are also having the same problem. What was the fix?

Thanks,

Tony.


------------------------------------
Reply:

Hi there,

Please share the solution/fix. We are experiencing the same issue.

Thanks..


------------------------------------
Reply:

I'm also facing the same problem, has anyone found out how to fix this?

I've tried reinstalling the Excel plugin and removing/adding the connection from Excel. With IE I can connect to same MDS url.

BR
- Juha S


------------------------------------

Cumulative Update KB3200970 Windows 10 version 1607 for both PC and Mobile.

The latest cumulative update KB3200970 for Windows 10 1607 via Windows Update will push the build number from the last build 14393.351 to PC build 14393.447 and Mobile build 10.0.14393.447.

Reply:

Hello there! I didn't have any problems with my new Cumulative Update KB3200970. It took really long time to download and install though.
I guess, you just need to wait until it finishes itself. Be patient!
Now i have 14393.447.
I did install on my desktop pc and laptop, both went well.
Good luck guys!
Czecher

Btw. There is also an update called KB890830 - it says October for me, i did this update last month, it seems to be the same one is it true? Or just the same name + number. 

Thank you for your answers :)


------------------------------------

For users who are in Windows 10 version 1511, you have a new cumulative update

The latest cumulative update KB3198586 for Windows 10 1511 (Threshold 2) will push the build number slightly from the last build 10586.633 to PC build 10586.679 and Mobile build 10.0.10586.679.

SCO 2012 R2 Agent Server 2016 support

Does SCOM 2012 R2 agent support server 2016? Does OS MP support 2016 server?

Reply:

I don't think its supported.

Refer - https://technet.microsoft.com/en-us/library/dn465154%28v=sc.12%29.aspx?f=255&MSPPError=-2147217396


Thanks, S K Agrawal


------------------------------------
Reply:
There's no MP for Server 2016 yet.

&quot;Fear disturbs your concentration&quot;


------------------------------------

Server stucks at Applying Computer Settings after every reboot

Hello!

On one of our sites containing around 15 servers, whenever a terminal server is rebooted, it gets stuck on Applying Computer Settings for around 15 minutes. If it is un-joined from the domain then no issue. Moreover, once it is done with this delay, no time delay is observed in user login. But after every reboot, 15 - 20 mins delay is always observed. Domain is the same at other sites and no issue is being observed else where.

OS: MS Windows Server 2008R2

Help Required


Reply:
Hi,

Please refer below Technet blog to troubleshoot,

http://blogs.technet.com/b/askperf/archive/2008/10/14/help-i-m-stuck-at-applying-computer-settings.aspx

http://social.technet.microsoft.com/Forums/windowsserver/en-US/e939c40c-44f2-49eb-82ef-c7f34a485533/2008-r2-hangs-at-applying-computer-settings-until-network-comes-up

Regards,
Manjunath Sullad


------------------------------------
Reply:
Hi,

Thank you for posting in Windows Server forum.

In addition, for a test please try to modify the behavior of HTTP.SYS to depend on another service being started first. To do this, perform the following steps: 

1. Open Registry Editor
2. Navigate to HKLM\SYSTEM\CurrentControlSet\Services\HTTP and create the following Multi-string value: DependOnService
3.  Double click the new DependOnService entry
4. Type CRYPTSVC in the Value Data field and click OK.
5. Reboot the server

NOTE: Please ensure that you make a backup of the registry / affected keys before making any changes to your system.

More information.
KB 2004121

Hope it helps!

Thanks.

Dharmesh Solanki


------------------------------------
Reply:
Hi,

Thanks for your comment.

Sorry for late response. How is everything going on?

In your case, suggest you to check some steps. Please try to set the primary DNS IP address to valid DC\DNS IP address. Also check that DNS database is updated and it's not getting corrupted and issue occurs due to that reason.

As you have commented that server is working fine in workgroup but occurring issue when in domain environment. Please try to rejoin the server to domain and then check the result. You can refer below article for information.
2008 R2 Domain Controller hangs during Applying Computer Settings

Hope it helps! 

Thanks.

Dharmesh Solanki


------------------------------------
Reply:

Hello Solanki

Steps mentioned in your last two threads applied and necessary checks performed but no improvement.

Any other suggestion or action that will resolve the problem.

Regards


------------------------------------
Reply:
Hi,

Thanks for your comment.

Please check your other thread for information, because it seems to have same issue for both thread.

User Stuck at Applying User Setting after Login
http://social.technet.microsoft.com/Forums/en-US/9c05e739-a092-496d-98ac-9f0adfb55783/user-stuck-at-applying-user-setting-after-login?forum=winserverTS

Hope it helps!

Thanks.

Dharmesh Solanki


------------------------------------
Reply:
Hi,

Thanks for your comment.

Please check your other thread for information, because it seems to have same issue for both thread.

User Stuck at Applying User Setting after Login
http://social.technet.microsoft.com/Forums/en-US/9c05e739-a092-496d-98ac-9f0adfb55783/user-stuck-at-applying-user-setting-after-login?forum=winserverTS

Hope it helps!

Thanks.

Dharmesh Solanki

No, Solanki that is different issue and has been resolved


Rox_Star


------------------------------------
Reply:

Windows Server with Terminal Services TS / Remote Desktop Services RDS role installed takes up to an hour to allow logon ( stuck at Please wait for Group Policy Client ) then takes upto 90 minutes for logon ( stuck at Applying User Settings ) logging Winlogon 6005 Warnings with the following text:- The winlogon notification subscriber <GPClient> is taking a long time to handle the notification event (CreateSession) was solved by Microsoft KB2655998


------------------------------------

lock screen image blank

Just installed the anniversary update and notice that if I lock the PC the screen image is black. The text and date show, but no image. Is this just me or a anniversary bug?

Reply:

The default lock screen images are stored in C:\Windows\Web, can you find them in this folder?

You may also copy an image and paste to this folder and check if it can make any difference.


S.Sengupta, Windows Insider MVP


------------------------------------
Reply:

The default lock screen images are stored in C:\Windows\Web, can you find them in this folder?

You may also copy an image and paste to this folder and check if it can make any difference.


S.Sengupta, Windows Insider MVP


In the web folders I see 3 other folders: 4k, screen, web. in each one I see a different set of picture. When I lock the screen I only see the text on a black screen. If I tap a screen an image open and it's waiting for my password to log into windows

------------------------------------

Windows 10 Wifi problems after Windows Update (Lenovo T450)

Just ran a Windows update which resulted in the list of available WiFi networks always being empty and no option to connect to known WiFi .

This was on a Lenovo T450.

After a lot of work I found a solution:

  1. Enter Network Settings
  2. Select Airplane Mode
  3. Turn it On
  4. Restart
  5. Turn Airplane mode Off.
  6. Now all was back to normal

Just wanted to post this if others were having the same issues and not wanted to spend the time I did to solve it...


  • Edited by _beaker Tuesday, November 8, 2016 11:53 AM

getting Error Accessing RDS

Hi All,

i am getting below i am trying to access remoteAPP

[Window Title]
RemoteApp Disconnected

[Content]
Your computer can't connect to the remote computer because an error occurred on the remote computer that you want to connect to. Contact your network administrator for assistance.

[OK] [Help]

need your help on this.

No comments:

Post a Comment

Setup is Split Across Multiple CDs

Setup is Split Across Multiple CDs Lately I've seen a bunch of people hitting installation errors that have to do with the fact th...