Internet Information Services (IIS) FTP 7.5 550 Keyset does not exist
So I performed a replication of IIS from an old server to a new server (IIS 6.0 to IIS 7.5 being the current new server). I've copied over all of the sites and virtual directories. I can FTP and DIR on all of the newly copied virtual directories and sites except for one, however it works perfectly fine on the old server.
New server
230 User logged in.
Remote system type is Windows_NT.
ftp> dir
200 PORT command successful.
550 Keyset does not exist
ftp> cd xxxxxdir
550 The system cannot find the file specified.
ftp>
Old server
Remote system type is Windows_NT.
ftp> dir
200 PORT command successful.
150 Opening ASCII mode data connection for /bin/ls.
02-16-11 08:42AM <DIR> xxxxdir
09-16-13 07:48AM <DIR> xxxxdir
09-16-13 07:51AM <DIR> xxxxdir
09-16-13 07:50AM <DIR> xxxxdir
226 Transfer complete.
202 bytes received in 0.0013 seconds (153.98 Kbytes/s)
ftp>
I've read around that it was a permissions issue with a file in C:\ProgramData\Microsoft\Crypto\RSA\MachineKeys\xxxxxx but it didn't seem to fix the problem.
All permissions and authorizations are exactly alike between the old and new servers.
- Changed type Frank Shen5 Friday, September 27, 2013 7:16 AM
Reply:
Hi,
According to your description, I want to further confirm with you whether we have tried the
following way to troubleshoot the issue.
1. Locate the following folder:
%ALLUSERSPROFILE%\Microsoft\Crypto\RSA\MachineKeys
2. Right-click the following file, and then click Properties:
76944fb33636aeddb9590521c2e8815a_GUID
3. Click the Security tab, and then click Edit. If you are asked whether you want to continue the
operation, click Continue. Then, the list of group names and user names that have access to this
key file appears in the Permissions dialog box.
4. Click Add. Then, the Select Users, Computers, Service Accounts, or Groups dialog box appears.
5. Type LOCAL SERVICE, and then click Check Names.
6. Click OK.
7. In the Group or user names list, click LOCAL SERVICE. Make sure that the Read check box is
checked in the Permissions for LOCAL SERVICE list.
Click OK.
Regarding this issue, the following article may be referred to for more information.
"Keyset does not exist" error message when you try to change the identity of an application pool
by using Internet Information Services Manager from a remote computer
http://support.microsoft.com/kb/977754/en-us
If the issue persists, I think this issue is more related to the IIS. In order to get a better
assistance, we may ask for help in the following IIS forum.
The Official Microsoft IIS Forum
Best regards,
Frank Shen
- Edited by Frank Shen5 Wednesday, September 18, 2013 1:12 PM
------------------------------------
Reply:
------------------------------------
Reply:
In case this helps someone else, I had the same issue. Even after giving the "Connect as" user Read rights to the 76944fb33636aeddb9590521c2e8815a_GUID file, I was still getting the same error.
How I fixed it was giving Administrators and Everyone group Full Control to this directory: %ALLUSERSPROFILE%\Microsoft\Crypto\RSA\MachineKeys
Those two groups had no permission on MachineKeys.
This is the link that gave me the idea of giving those two groups Full Control:
https://msdn.microsoft.com/en-us/library/ee248638%28v=vs.100%29.aspx
Note: When I set the permission on that directory, it gave me some errors that it couldn't apply that permission to some of the files in that directory. It is safe to ignore those errors as long as you've already set the permissions on the 76944fb33636aeddb9590521c2e8815a_GUID file (the iisWasKey).
------------------------------------
windows store is not opening..
Windows store is not working for me
Welcome to the Office 2016 and Office 365 ProPlus forums!
Welcome to the Office 2016 and Office 365 Pro Plus forums!
Office 2016 is the latest version of Microsoft's productivity apps, such as Word, PowerPoint, Excel, and Outlook. You can provide the Office 365 ProPlus users in your organization with the new and enhanced features of Office 2016 by updating those users from the Office 2013 version of Office 365 ProPlus to the Office 2016 version.
Before you update your users to the Office 2016 version, we recommend that you review the following information so that you can develop a plan of how best to update your existing Office 365 ProPlus installations. This article contains information to help administrators create a plan to upgrade to Office 2016.
Reply:
Hi Possukka,
Any idea when it will be released on the Volume Licensing Service Centre?
Thanks
------------------------------------
Reply:
Waiting for that also, it is on MSDN but not VLSC.Hi Possukka,
Any idea when it will be released on the Volume Licensing Service Centre?
Thanks
------------------------------------
Reply:
------------------------------------
SELECT * FROM WMIMonitorID cause Access Denied
Hi
I have some VBscript that queries the WMIMonitoID of the root\WMI namespace.
It works when I log in with local admin.
It fails otherwise.
I have run Wmimgmt.msc and made sure that Authenticated users have the required rights, they do.
Other scripts using \root\cimv2, such as querying Win32_DesktopMonitor work fine.
Other classes in root\WMI also work (I've been using the WMI Code Creator to test) such as MSNdis_EthernetCurrentAddress work and return values, but most of the classes return Access Denied.
I have tried adding my user to various local groups, only Admin works. My code is below.
Any ideas? We have quite a locked down environment mostly GPO controlled.
Option Explicit
Dim strComputer, objWMIService, colItems, objItem
strComputer = "localhost"
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate,authenticationLevel=Pkt}!\\" _
& strComputer & "\root\wmi")
Set colItems = objWMIService.ExecQuery _
("SELECT * FROM WMIMonitorID")
For Each objItem In colItems
Wscript.Echo objItem.InstanceName
Next
Reply:
So what's your question?
Run your script as administrator.
-- Bill Stewart [Bill_Stewart]
------------------------------------
Reply:
Basically , what else could be restricting normal users accessing the root\WMI namespace?
------------------------------------
Reply:
------------------------------------
Reply:
Oh, and running scrip as admin isn't an option
Unfortunately we can't always have it the way we want.
-- Bill Stewart [Bill_Stewart]
------------------------------------
Reply:
Search for the instructions on how to allow users access to DCOM. WMI is only half of the issue.
Be careful how you implement this.
\_(ツ)_/
------------------------------------
Reply:
Search for the instructions on how to allow users access to DCOM. WMI is only half of the issue.
Be careful how you implement this.
\_(ツ)_/
Been there, done that :-( Added users into relevant groups (but I will double check)
The thing I am look at now if the security setting "impersonate a client after authentication"
What I don't understand is why our normal users can query some parts of the wmi namespace, but not others?
Edit - yep, checked, Everyone has Local Launch/Local Activation rights to COM security. Plus my normal user account is in "Distributed COM users".
Edit 2 - I even REMOVED the "launch and Activation" limits for the Administrator group. My admin account still worked. When I removed the Everyone limits, my Admin account failed - but failed with a Permission Denied error on the Getobject, not the same error as when my normal account is running the script. This shows my "Everyone" setting is working, but my normal acocunt is broken somewhere esle.
- Edited by ACM67 Wednesday, September 23, 2015 2:41 PM
------------------------------------
Error 80072f8f after installing Windows 8.1 / 2012 R2 "Update"
I just want to share my experience with the new Update.
We are using a WSUS (on Windows Server 2012) with a Wildcard certificate from Geotrust for some time now.
I manually installed the new "Windows 8.1 Update 1" on a Windows 8.1 and a Windows Server 2012 R2 System, both joined in the Domain and were able to update with the WSUS.
Right after the update both systems keeps failing to communicate with the WSUS with error 80072f8f.
After changing the ssl certificate on the WSUS Server to a internal PKI certificate the Systems could talk again with the wsus Server.
So keep in mind when you upgrade to check if the system still works with your wsus server.
- Edited by Sven Bürger Wednesday, April 9, 2014 9:39 AM
Reply:
Thanks for sharing.
A lot a good infos can be found in here too : http://community.spiceworks.com/topic/317195-windows-update-error-80072f8f-wsus-over-ssl-certificate-is-imported
Regards.
TiGrOu.
------------------------------------
Reply:
Just to make it clear. WSUS was working fine on the same Systems before I upgraded them with the Update. It was still working fine with all other Clients. So it is a change in the "Windows 8.1 Update 1" itself.
And because the WSUS is on Server 2012, it is not another issue described here http://www.neowin.net/news/microsoft-pulls-windows-81-update-from-wsus-servers.
I think it's the Wildcard hostname in the certificate, I'm not 100% sure, just wanted other People to know, that the change to another certificate with the fqdn fixed my issue.
------------------------------------
Reply:
I manually installed the new "Windows 8.1 Update 1" on a Windows 8.1 and a Windows Server 2012 R2 System, both joined in the Domain and were able to update with the WSUS.
Right after the update both systems keeps failing to communicate with the WSUS with error 80072f8f.
This is a Known Issue, being actively worked for remediation, and is discussed in this blog article posted yesterday morning:
Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
SolarWinds Head Geek
Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
http://www.solarwinds.com/gotmicrosoft
The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.
------------------------------------
Reply:
I think it's the Wildcard hostname in the certificate, I'm not 100% sure, just wanted other People to know, that the change to another certificate with the fqdn fixed my issue.
Actually, the issue is (as discussed in the blog article) that the UPDATE reconfigured W8.1/WS2012R2 to use TLS 1.2 by default, but WSUS v3.2 does not support TLS 1.2 by default.
Options:
On WS2008R2-based WSUS v3.2, you can enable TLS 1.2 support.
On WS2003/WS2008-based WSUS v3.2, you'll need to disable SSL. [Personally I think upgrading the operating system running WSUS is an even better solution! :-)]
Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
SolarWinds Head Geek
Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
http://www.solarwinds.com/gotmicrosoft
The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.
------------------------------------
Reply:
I am also getting the same issue where the 80072f8f error occurs when attempting to scan for updates. The client machines are Windows Server 2012 R2 (with Update 1 installed) and the WSUS server is also running Windows Server 2012 R2 Update 1.
You answers are not remotely helpful in this instance.
The OP has mentioned several times he is using a Windows Server 2012 WSUS box. Therefore the article you reference has no validity for this issue.
TLS 1.2 is enabled by default on 2012 so the linked article and advice unfortunately does not fix the issue.
Has anyone else had the 80072f8f error when using a Windows Server 2012 R2 WSUS box?
We see errors in the CAPI2 log for Verify Revocation Information and Vertify Chain Policy. Althougjh browsing to our WSUS server in IE shows the correct validated certificate.
Any help would be appreciated.
Kind Regards
James Tighe
MCTS: Windows Server 2008 Active Directory, Configuring MCTS: Windows 7, Configuring
------------------------------------
Reply:
Yes had this problem with WSUS runing on Server 2012R2.
Disabled https for WSUS and Clietns could search for updates.
And than error 80072EFE......
Microsoft needs a better QA
Kind Regards
Chonta
------------------------------------
0x87D00669 - Not able to get software updates content locations at this time
This isn't a question, but it may help some of you. I found the following issue on some machines where patch deployment was set to optional (no installation deadline).
Users would go into the Software Center and select "Updates" from the menu, select all the updates and press Install. The patches would either sit at "Downloading (0% complete)" forever, or quickly error out with code 0x87D00669. The "Configuration Manager Trace Log Tool" has a handy error code / English translator, and it says this means "Not able to get software updates content locations at this time".
Watching the patches download into \Windows\ccmcache, I would see the patch folders get created, but some of those folders would remain empty. I found this to be intermittent, as sometimes it would work, sometimes it wouldn't, and sometimes only some patches would install.
The complaints I would get would be "I tried it on Monday and it didn't work, but Tuesday it worked fine". There was nothing special about Mondays. The vast majority of my machines are patched automatically on a fixed schedule (with installation deadline), so I know my boundaries are fine.
It seems that the patch download to ccmcache isn't as quick as I would like it to be. As a work-around, I set an arbitrary installation deadline far into the future. This forces the patches to download to ccmcache well before the end-user initiates the install. As a test, I watched a machine, and found that it could take up to 4 hours for all the patches to download into ccmcache, spread randomly across those 4 hours.
I hope this helps some of you.
Nick.
- Changed type Joyce L Wednesday, September 23, 2015 6:42 AM discussion
Reply:
Hi,
As this is not a question, I'll change it to a discussion.
Thank you.
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.
------------------------------------
Want to be the Microsoft TechNet Miscellaneous Guru for September?
All you have to do is add an article to TechNet Wiki from your own specialist field. Something that fits into one of the categories listed on the submissions page. Copy in your own blog posts, a forum solution, a white paper, or just something you had to solve for your own day's work today.
Drop us some nifty knowledge, or superb snippets, and become MICROSOFT TECHNOLOGY GURU OF THE MONTH!
This is an official Microsoft TechNet recognition, where people such as yourselves can truly get noticed!
HOW TO WIN
1) Please copy over your Microsoft technical solutions and revelations to TechNet Wiki.
2) Add a link to it on THIS WIKI COMPETITION PAGE (so we know you've contributed)
3) Every month, we will highlight your contributions, and select a "Guru of the Month" in each technology.
If you win, we will sing your praises in blogs and forums, similar to the weekly contributor awards. Once "on our radar" and making your mark, you will probably be interviewed for your greatness, and maybe eventually even invited into other inner TechNet/MSDN circles!
Winning this award in your favoured technology will help us learn the active members in each community.
Feel free to ask any questions below.
More about TechNet Guru Awards
#PEJL
Got any nice code? If you invest time in coding an elegant, novel or impressive answer on MSDN forums, why not copy it over to TechNet Wiki, for future generations to benefit from! You'll never get archived again, and you could win weekly awards!
Have you got what it takes o become this month's TechNet Technical Guru? Join a long list of well known community big hitters, show your knowledge and prowess in your favoured technologies!
- Edited by Ed Price - MSFTMicrosoft employee Wednesday, September 16, 2015 6:28 AM Title
Reply:
3 Miscellaneous articles so far:
- Room Temperature Detection with Galileo Gen 1 and Grove Kit. by Rishabh Banga
- Getting started with Microsoft ASP.NET WebHooks Preview by Gaurav Kumar Arora
- An idea to add SQL Like Functionality in LINQ by Gaurav Kumar Arora
None for Visio yet.
8 Days to go!
Ed Price, Azure & Power BI Customer Program Manager (Blog, Small Basic, Wiki Ninjas, Wiki)
Answer an interesting question? Create a wiki article about it!
------------------------------------
Can you setup Always On Availability group between 2 separate SQL Clusters
I have an active passive cluster on my primary Data center in NY and have a DR Active / passive SQL Cluster in TX. These are two separate clusters in the same domain using the same SQL server credentials.
Both clusters host an active / passive SQL instance. Lets call it SQLNY(Primary) and SQLTX (DR). I want to enable always On Availability group within the two SQL Instances SQLNY and SQLTX. The listener will be SQLAG which will be used by the Application to connect to the SQL instance.
Is there a practical way to implement this? This will not only give me instant fail over within the NY (Primary) but also give me the flexibility to fail over to TX.
I am using SQL 2014 Enterprise Edition on both clusters.
Any help will be much appreciated..
Reply:
Sorry, you can not. because: These are two separate clusters in the same domain using the same SQL server credentials.
Note: To set up Availability groups all your servers must be part of the same cluster. You can not join servers to AG from different clusters.
Your alter native options:
1) Mirroring each database between active nodes
2) Replication
------------------------------------
0x80070057 error at the end of system image restore
A couple of days ago I made a system image backup (there were no error messages that it was unsuccessful), now I need to restore it, I boot Windows 10 DVD, point to a network location and start the restore, but after an hour or so, at the end it errors with "0x80070057: Parameter is incorrect". After that Windows boots to diagnostic mode but fails to repair anything. Diskpart shows that the partition which used to be C is RAW, I also have an impression that the order of partitions is different (C was 3rd, after restore it seems to be 1st).
I checked and I'm able to mount VHDX with C partition and access all files, chkdsk doesn't find any errors on it.
It's a UEFI computer with GPT installation.
Is there some way to restore it with some 3rd party tool, or manually? What can I do?
PS: there's a lot of clues on the internet about fixing similar problem when such error popups at the beginning of restore from a USB thumb drive. The solution is to unplug the thumb before starting so the restore doesn't get confused with the additional drive. It's not the case here, I'm not using USB thumb and I get the error at the end of restore.
Update: I managed to restore an older backup of Windows 8.1 from before upgrade to Windows 10. I used Windows 8.1 DVD for the restore.
The difference between an old image and the new one is that after upgrade to Windows 10 I removed an optical drive and replaced it with a SSD which I was using for page file and ReadyBoost. Also, Windows 8.1 had 3 partitions, while after upgrade to Windows 10 I noticed that there's some additional 4th partition (so there were 2 restore or EFI partitions, not sure which), but the backup image of Windows 10 still consists of 3 VHDX files. The image of Windows 10 isn't an image made from a scratch - when I was setting up the backup I simply pointed to the old 8.1 image and Windows 10 was making its images on top of the old one (I wanted it to backup the differences only, to avoid huge transfer of the whole drive).
Anyway, as I already stated I'm sure that VHDX of Windows 10 isn't corrupted. It's probably some problem with XML metadata so the restore procedure can't recreate proper partition layout corresponding with images, or something. Any help would be appreciated.
Reply:
------------------------------------
Reply:
Hi rutra80,
It would be much appreciated if you could share the troubleshoot experience here. It would be very helpful as a reference for the person who will come across the similar symptom in the feature.
Best regards
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.
- Edited by MeipoXuMicrosoft contingent staff Tuesday, September 22, 2015 5:37 AM
------------------------------------
Reply:
------------------------------------
Reply:
Hi ruta80,
Thanks for updating.
Best reagrds
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.
------------------------------------
New blog series!
Michael Kelley, Lead Program Manager, Open Source Technology Center
Archive and Delete
Hi,
I need to move items off my imap server. I archived them onto a pst file but they still show on the server. How can I back up to my computer and delete off server at the same time?
How to use Icacls with VBS
Hello All,
I am trying to create a vbs script to change a folder permissions using Icacls.
Via Prompt, the command works perfectly, but when I try to use VBS, it does not work.
Prompt:
icacls "C:\test\test_perm" /grant "Everyone":(OI)(CI)F
VBS:
set wshshell = wscript.createobject("wscript.shell")
wshshell.run(icacls "C:\test\test_perm" /grant "todos":(OI)(CI)F)
Could anyone tell me what should I do?
- Changed type Bill_Stewart Monday, October 19, 2015 4:35 PM
- Moved by Bill_Stewart Monday, October 19, 2015 4:36 PM This is not "scripts on demand"
Reply:
Why do you need the VBScript? Just run the command.
Second, your VBScript code is not correct. Don't guess at how to write the code. As you can see, that doesn't work. Instead, look for examples of how to use the WshShell object's Run method in VBScript.
It is not hard to search for information.
http://www.google.com/search?q=wshshell+run+vbscript
-- Bill Stewart [Bill_Stewart]
------------------------------------
Reply:
Forget VBScript. You don't want towaste time learning it:
In PowerShell:
$results=icacls C:\test\test_perm /grant Everyone:(OI)(CI)F
\_(ツ)_/
------------------------------------
Reply:
Actually, this will be the first part of my script...
Here, depending on the period of the mouth some users have the right or not to write in some folders. So I want the user responsible for those folders to run a script to change those permissions.
The script will interact with this user and ask him the date (week, mounth, year and etc).
I've searched a lot and I found solutions like the one I presented here, but none worked and Icould not find where the mistake. Thats why I asked here.
------------------------------------
Reply:
Why as a user for the date. The system already knows what the date is.
Again. If you are going to learn scripting don't waste your time on VBScript as it is almost obsolete. Use PowerShell.
Start here: https://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx?f=255&MSPPError=-2147217396
\_(ツ)_/
------------------------------------
Start-Process on Windows 10/PowerShell 5
Has anyone else experienced an issue when launching a PowerShell instance using Start-Process where the new console window is not responsive to keyboard control on Windows 10 when used with the -Credential parameter utilizing alternate credentials than that which is currently logged in?
For instance,
Start-Process powershell -Credential (Get-Credential) -PassThru
will launch a new PowerShell process using alternate credentials. However, when attempting to type in the window, it does not immediately show unless you either A) switch to the parent window and press enter, or B) close the parent window.
This behavior does not happen in earlier versions of Windows in my testing, and I was wondering if anyone has a workaround.
- Changed type bryandj Tuesday, September 22, 2015 12:56 AM
Reply:
Definitely a very entertaining condition. Post in connect as this is certainly a bug.
\_(ツ)_/
------------------------------------
Reply:
I tried in my Win 10 with PowerShell 5.0 and worked as expected.
Regards Chen V [MCTS SharePoint 2010]
------------------------------------
Reply:
------------------------------------
Reply:
Regards Chen V [MCTS SharePoint 2010]
------------------------------------
Reply:
------------------------------------
SQL server 2014 SNAPSHOT for transaction replication taking huge time
I am facing huge slowness during snapshot generation for a transaction replication set up. the replication set up code is running fine for lower version of sql server. here is my findings.
SP ID 218 program name - Snapshot Agent Smo Connection find the exact query running under this process id was
(@_msparam_0 nvarchar(4000),@_msparam_1 nvarchar(4000))SELECT SCHEMA_NAME(tbl.schema_id) AS [Table_Schema], tbl.name AS [Table_Name], i.name AS [Index_Name], p.name AS [Name], CAST(p.value AS sql_variant) AS [Value] FROM sys.tables AS tbl INNER JOIN sys.indexes AS i ON (i.index_id > @_msparam_0 and i.is_hypothetical = @_msparam_1) AND (i.object_id=tbl.object_id) LEFT OUTER JOIN sys.key_constraints AS k ON k.parent_object_id = i.object_id AND k.unique_index_id = i.index_id INNER JOIN sys.extended_properties AS p ON p.major_id=CASE (i.is_primary_key + 2*i.is_unique_constraint) WHEN 0 THEN i.object_id ELSE k.object_id END AND p.minor_id=CASE (i.is_primary_key + 2*i.is_unique_constraint) WHEN 0 THEN CAST(i.index_id AS int) ELSE 0 END AND p.class=CASE (i.is_primary_key + 2*i.is_unique_constraint) WHEN 0 THEN 7 ELSE 1 END ORDER BY [Table_Schema] ASC,[Table_Name] ASC,[Index_Name] ASC,[Name] ASC
this part is taking huge time. in the sql server snapshot agent lock I find the below log.
2015-09-22 09:22:03.62 [77%] Bulk copying snapshot data for article 'TransPostErrLog (part 16 of 16)'
2015-09-22 09:22:03.62 [77%] Bulk copied snapshot data for article 'TransPostErrLog (part 12 of 16)' (548 rows).
2015-09-22 09:22:03.63 [77%] Bulk copying snapshot data for article 'UnallocPayBalConv'
2015-09-22 09:22:03.63 [77%] Bulk copied snapshot data for article 'TransPostErrLog (part 14 of 16)' (600 rows).
2015-09-22 09:22:03.64 [77%] Bulk copied snapshot data for article 'TransPostErrLog (part 13 of 16)' (624 rows).
2015-09-22 09:22:03.65 [77%] Bulk copied snapshot data for article 'UnallocPayBalConv' (0 rows).
2015-09-22 09:22:03.66 [77%] Bulk copied snapshot data for article 'TransPostErrLog (part 16 of 16)' (1954 rows).
2015-09-22 09:22:03.67 [87%] Bulk copied snapshot data for article 'TransPostErrLog (part 15 of 16)' (562 rows).
2015-09-22 09:26:02.82 [87%] The replication agent was shut down in response to an abort request.
I have also change the connection timeout to some higher value but no help.
Reply:
looking for a book on SQL Server 2008 Administration? http://www.amazon.com/Microsoft-Server-2008-Management-Administration/dp/067233044X looking for a book on SQL Server 2008 Full-Text Search? http://www.amazon.com/Pro-Full-Text-Search-Server-2008/dp/1430215941
------------------------------------
Reply:
looking for a book on SQL Server 2008 Administration? http://www.amazon.com/Microsoft-Server-2008-Management-Administration/dp/067233044X looking for a book on SQL Server 2008 Full-Text Search? http://www.amazon.com/Pro-Full-Text-Search-Server-2008/dp/1430215941
------------------------------------
Powershell ISE Altgr+B
Hi all,
i have already posted this question on Windows 10 forum, but i was redirected hee, so here it goes again:
i'm having problem regarding using powershell ise on windows 10. As i'm from Croatia, i use Croatian keyboard layout and to open curly bracket ( { ) i need to use Altgr + B .
The problem is that new ISE is using Altgr+B for "Break All" in debugging.
Has anyone find a solution to this problem, it would be great if we could have an option to customize the keyboard shortcuts.
Thanks in advance,
- Changed type Bill_Stewart Monday, November 23, 2015 9:18 PM
Reply:
Never tried :)
but you can check:
http://tfl09.blogspot.lt/2014/07/powershell-ise-keyboard-shortcuts.html
------------------------------------
Reply:
Change your keyboard layout to English (US or UK)
As far as I know PowerShell does not have MUI support for Croaties. You can also contact Microsoft support for the issue.
See. If you hadn't let old Genghis Khan in you wouldn't have such a lame keyboard.
\_(ツ)_/
------------------------------------
Reply:
JRV, just a question for you as a powershell master wizard,
is it possible to write some command and add it in PS profile to overwrite shortcuts defined for ise?
- Edited by Valeras Monday, September 21, 2015 11:41 PM
------------------------------------
Reply:
Why? Just change the shortcut directly.
\_(ツ)_/
------------------------------------
Reply:
in ise you mean? i found interesting post, would this line work?
$psISE.CurrentPowerShellTab.AddOnsMenu.Submenus.Add("My shortcut name",{Some_function_added_to_profile},"ctrl+alt+del") ------------------------------------
Reply:
------------------------------------
Encryption and Decryption in SSAS
Hi All,
In our Cube we are receiving encrypted source data from SQL Views but we need to decrypt it.
I do not have any idea regarding security keys and its usage.
Please provide any suggestions to get decrypted data into Cube report.
Regards,
Praveen.
Remote Desktop Access Blurry image at full resolution
Hi Guys, Recently i have upgraded from Win 7 to Win 10 Professional. When I am using Win 10, the resolution of Remote Desktop (to my Windows Server 2003 R2) is blurry at full resolution at 2560 x 1440 / full screen. The resolution is only ok if i scale it back to 1920 x 1200. Please see screen capture images below. When I was using Win 7, I have no issue with the Remote Desktop access resolution at full monitor resolution. There was no change of monitor, GPU or server equipment (hardware and software) before the upgrade from Win 7 to Win 10 Professional. Appreciate any advise. Thank you very much.
Cheerios,
Dom.
- Edited by necroka Wednesday, September 9, 2015 3:58 AM
- Moved by MedicalSMicrosoft contingent staff Thursday, September 10, 2015 8:29 AM
- Changed type MedicalSMicrosoft contingent staff Tuesday, September 29, 2015 8:52 AM
Reply:
I see that color depth of session is set to 24 Bit, can you check if there is an option to choose "Highest Quality (32 Bit)".
Also, click the Experience tab and set the performance to "detect connection quality automatically".
Prajwal Desai, http://prajwaldesai.com
------------------------------------
Reply:
Hi Prajwal,
Thanks for your reply.
I tried "Highest Quality (32 Bit)" as well as "detect connection quality automatically", but it doesn't make a difference. Still blur at highest resolution and sharp at 1920 x 1200.
------------------------------------
Reply:
Hi,
I saw similar issues when upgrading to Windows 10 - specifically when we remote to a system with high screen resolution.
In current situation you can test to update the display card driver for both your Windows 2003 R2 system and the Windows 10 system. If that will not work (or cannot find newer driver), use lower resolution as a workaround and submit a feedback. I assume such issue was already submitted by other customers but with more feedback submitted, we may get a fix sooner.
Thank you for your post!
Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.
- Edited by MedicalSMicrosoft contingent staff Friday, September 11, 2015 2:23 AM typo
------------------------------------
Reply:
Hi Shaon Shan,
I did the display driver updating but its not working out.
Sorry for the noob question but where do i submit a feedback on this issue?
------------------------------------
Reply:
Hi,
Sorry for the delay in reply.
You can click on the Search bar and choose fourth option in left list.
Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.
------------------------------------
how disable password request in windows10 , when computer turned in
I want to disable it
I mean I want to disable the password request , but I want my computer connected to my account
trying to print an email I got but it wont show the email to print. it shows something different.
Reply:
If the print output doesn't look as desired, the following are the main reasons:
1. When the C: drive is full, print does not work or that the print output is either blank or missing characters. Kindly make sure C: has at least 500 MB of free space for the print to come perfectly.
2. If the ink cartridges are not aligned/calibrated properly the print is disturbed with incorrect colors and wrong alignments. The steps to correct this issue varies with printer model.
3. The ink cartridges' nozzle or print head needs cleaning. As mentioned in point 2, steps for this also varies with printer model.
If the description is different from the issue you're facing, kindly share the exact error message or the description of the print to assist further.
Balaji Kundalam
------------------------------------
Exchange 2013 - Send connector not working
I can't get mail sending to work properly in Exchange 2013. Neither internal nor external mail is working. Recieving mails is functioning properly.
I configured a send connector to use a external samrt host. Using telnet on the machine to send mail through the smarthost ist working correctly. DNS resolution is also working correctly. The Event Log doesn't show any suspicious entries. The mail doesn't even seem to reach the queues since alle mails remain in the draft folder and Exchange Toolbox queue display don't show a single message. Is there any way of debugging why the mail doesn't enter the send mail queue?
Exchange management shells "Test-Mailflow" always results in:
RunspaceId : 8991e91b-ff88-4fa0-ba6e-62927ad0c7a9 TestMailflowResult : *FEHLER* MessageLatencyTime : 00:00:00 IsRemoteTest : True Identity : IsValid : True ObjectState : New
I am getting out of ideas how to resolve this issue. It might be the case that i misconfigured the Security Settings of the Recieve Connectors since i had problems recieving mails at the beginning. Is there a way to reset these settings or documentation how the default settings should lokk like?
Any Help will be very appreciated. It might be that some terms i used werent correctly translated in the correct english term since i am running a german installation.
Best regards,
Tobias
Reply:
Think i found something.
When i try to send a mail through localhost port 25 with telnet i get:
"451 4.7.0 Temporary server error. Please try again later. PRX4"
The encourages my the it is really the settings made in the recieve connectors. Can anybody post screenshots of their recieve connectors security tab? I think of main interest is Default - HubTransport and Default Frontend - FrontendTransport.
Would be great to compare my settings to the default one or at least to working ones.
Best regards,
Tobias
------------------------------------
Reply:
Hello,
Do you have any update on this topic?
I have the same problem and I believe it will be faster to uninstall and reinstall the CAS...
Thanks,
------------------------------------
Reply:
Help this is really bad, I cant send in or external mail but if I link a POP account to the ost database and send or receive mail it is uploaded to the exchange so is visible from owa.
If I send through the exchange account the message just vanishes doesn't go to sent items it gone.
EVERYTHING WAS WORKING JUST FINE UNTIL A FEW DAYS AGO AND WE DIDNT EVEN KNOW MAIL WASNT BEING SENT UNTIL I CHECKED MY SENT ITEMS.
[PS] C:\Windows\system32>Test-Mailflow
RunspaceId : 4f9ca02e-f773-4f0b-90b4-e38666a30451
TestMailflowResult : *FAILURE*
MessageLatencyTime : 00:00:00
IsRemoteTest : False
Identity :
IsValid : True
ObjectState : New
------------------------------------
Reply:
We are using Server 2012 DC with a separate Server 2012 with Exchange 2013 and Outlook 2013 with all updates applied.
Any help would be great,
Many thanks.
------------------------------------
Reply:
I found the solution: Go to the ecp website of your mailserver, to to servers, and doubleclick the mailbox server, go to DNS lookups, and select custom setting for both exernal dns lookups and internal dns lookups. Now add an ip of an known external accessible dns server to the external dns lookups, and add the ip of your Domain controller to the internal dns lookups. :)
------------------------------------
Reply:
------------------------------------
Reply:
------------------------------------
Reply:
------------------------------------
No comments:
Post a Comment