Sometimes Windows networking really does some stupid stuff. Not only does it take up to a minute to connect to a network resource that is literally sitting one meter away, it also has annoying limitations such as the one listed in the title of this article.
I have seen this message before and usually disconnecting a network drive would do the trick. This time however the message would just not go away.
net use * /delete
Blog about technology and general post. Sharing my experience of the Contact Center world
Sunday, 21 June 2009
multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed
Thursday, 18 June 2009
The specified service has been marked for deletion
"The specified service has been marked for deletion”
Lately I have been working with Windows Services and came across this error when uninstalling and reinstalling the services. The culprit in this case is the MMC, once I closed and reopened the “services.msc” it resolved the issue.
Lately I have been working with Windows Services and came across this error when uninstalling and reinstalling the services. The culprit in this case is the MMC, once I closed and reopened the “services.msc” it resolved the issue.
Tuesday, 16 June 2009
Version of SQL Server and Service Pack
To Find out the version of Microsoft SQL Server and Service Packs installed
Query
=====
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
Sample Output
=============
8.00.2039 SP4 Personal Edition
Query
=====
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
Sample Output
=============
8.00.2039 SP4 Personal Edition
-
There comes a time when the Standard DB dips and query just isn’t enough and one requires to pass parameters to a Stored Procedure and get p...
-
Integrating a Simple ASP.NET SOAP Web Service with Genesys URS using the Web Services Block Introduction Genesys within its routin...
-
VBScript to restrict only one instance of application is running For this example I have used Notepad (notepad.exe) ' Process.vbs ...