SURFACE 2 REQUESTING A STARTUP PASSWORD WHICH I Hve never has or used help i canot get in
I recently had a supposed Microsoft team put up a constantly blinking and talking block on my surface 2 saying if I didn't take care of the viruses on my computer that microsoft would have to shut it down. So I called the number and received instructions to help me with the virus. what happened was they got control of my computer and proceeded to tell me if I didn't pay them 200.00 right now they could not fix my machine!! when I got in their face a little, telling them I needed my computer returned to where they first blocked it that is when they really got rude !!! Now I knew that they were not with your support people because your employees would NEVER speak to a customer the way they did to me.
I ended the call and my surface screen went all blue then a small box came on with this: " This computer is configured to require a password in order to start up. Please enter your start up password below" then underneath is has ok or restart that's it!!!! I have never had to have a startup password or used one in the entire 2 years I have had the Surface pro 2. please help me I know that the malware people did this to my computer hoping I would call back and pay them
. I will get all their info together and report them to Microsoft they are misrepresenting themselves and taking advantage of old people they think don't know any better then to let them In. I DIDNT!!!! THANK YOU L ALEXANDRIA DEFALCO 68YEARS OLD
Reply:
------------------------------------
NPS Network policy: multiple entries in "Tunnel-Pvt-Group-ID"
in Windows2012R2 Network Policy Server usually a single vlan ID is set in "Tunnel-Pvt-Group-ID".
There's the option to define multiple vlan IDs and I found out I've got a network policy defined this way. You may move the vlan IDs "up and down" like "if the first vlan ID assigment fails, try the second one" but I don't understand HOW a vlan assigment could fail.
Does anybody faced this before and could explain how it works?
thanks in advance
CCleaner leaves 500MB of windows.old behind.
I posted a similar thread some time ago about the same issue on an older preview build.
Too lazy to find it. So, I am posting it again. This time on on the current preview build 15007.
CCleaner removed most of the windows.old files but left about 500MB untouched and therefore windows.old folder was still present in the root drive.
I had to run the built-in Disk Cleanup to remove the folder and what were left behind. See screenshot below........
- Edited by david hk129 Friday, January 13, 2017 3:46 PM
- Changed type david hk129 Monday, January 16, 2017 5:04 PM
Reply:
Well this is the world we live in And these are the hands we're given...
------------------------------------
Reply:
Hi ,
Cclear is a third party cleaner and Optimization Tool provided by priviform. I think we'd better contact priviform support, they may have more resource to help you. I hope the following channel will be helpful.
https://www.piriform.com/support/ccleaner
NOTE: This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites.
Best regards
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.
------------------------------------
Reply:
I have decided not to bother............as long as the built-in Disk Cleanup can finish off what Ccleaner leaves behind. Besides, I have no worry about being low in disk space.
Thank you for the link.
------------------------------------
VVBN
YTFUYGYIUGIUHUIGTU7YTUIYGIUGYUU
I8U8IUUIU9IU
Intermitent internet windows 10
Reply:
The Windows Network and Internet Troubleshooter tests the network for problems and attempts automatic repairs for any issues found. Use this Windows tool to test and repair the connection.
Update your WiFi and Network drivers either by visiting the support site of the manufacturer or via Windows Update.
S.Sengupta, Windows Insider MVP
------------------------------------
windows 10 always shut down after turning off windows defender
https://www.youtube.com/watch?v=11BUgtIl3EM&t=4s&list=LLNcEuL-dmvW4nTIxWFNum3g&index=3
after I turn the windows defender off using that (link above) method, my pc constantly shut down by itself though I have turn the defender on using link in its description. I also have format and reinstall windows 10 but it still happens. any help???
Reply:
Well why disable Defender? What anti-virus do you have? If other av installed that will (should) disabled Defender.
The reg key is a hack I would say, most likely Windows knows it has been changed and either thinking it has been compromised or it is broken shutdown.
------------------------------------
What cluster size should I use on my disks?
I have been following the Windows Server forums for many years, and talked with many people about this topic. I see this question come up often. Here is a new blog post by one of Microsoft's storage engineers on the topic of cluster size definition. Short article, but a good reference to keep around.
Posting in both 2016 and 2012 forums.
. : | : . : | : . tim
Reply:
------------------------------------
Is this the problem?
The Adobe flush player plugin Vulnerabilities and back-end programmers' maliciousness
This software will not be scrutinized by an anti-virus or malware program. Hackers can write scripts that will not respond to your browser and have them run in flush plugin using the RPC function in Windows to hack into your device. The unresponsive script will have a similar function to a warm or Trojan virus but, being a scripts within a flash plugin, it the malicious program is undetectable to anti-virus, anti-spyware and ant-malware programs. The scripts will make your browser hang frustrating any heavy internet user.
- Edited by Tonycodeone Saturday, January 14, 2017 10:54 AM
Powershell: need example for try-catch-finally where finally is a must
My Example, Note: $ErrorActionPreference is continue
try { $value = 5 / 0 } Catch{ write-output "illegal operation" } $t = Get-Date Write-output ("operation is done at " + "$t") The reason is I need to know where -finally clause become necessary vs just put -finally clause no matter what.
Thanks
Liang
- Changed type Bill_Stewart Friday, February 17, 2017 6:01 PM
Reply:
The purpose of the Finally block is to run code even if the Try block encountered a terminating error, which would otherwise abort the script. If you use $ErrorActionPreference continue, then perhaps there is no need for a Finally block, since execution will always continue (I assume).
Edit: Reference:
Richard Mueller - MVP Enterprise Mobility (Identity and Access)
- Edited by Richard MuellerMVP Friday, January 13, 2017 10:00 PM
------------------------------------
Reply:
assume you open a file in the "Try" block and then an error occurs. You can close the file in the "Finally" block.
There are many times when we want to always execute code even when there is no error.
\_(ツ)_/
------------------------------------
Reply:
Hi Richard Mueller,
Continue is the default value for $ErrorActionPreference.
(5 / 0), this is a terminating error because the catch clause caught the error.
I still don't understand where there is finally clause because without it, my script will continue.
thanks
Liang
------------------------------------
Reply:
Jrv, please provide an example (with actual script) that demonstrated the finally clause is necessary. Without finally clause, the script will stop and won't execute remaining codes.
thanks
Liang
------------------------------------
Reply:
Without the Finally the script will not stop.
Suppose you want to do some work in Try. If there is an error you want to continue but clean up the try effect. If the code succeeds then ther is no need to do anything but continue - no clean up is necessary.
If you search you will find hundreds of examples in C#, VB.Net, JavaScript, etc..
To use Try/Catch you must use ErrorAction Stop and only that.
If you don't have a use for Finally then just ignore it until you have code that requires it. It is an advanced technique that is seldom used in PowerShell.
\_(ツ)_/
------------------------------------
Reply:
I have not experimented with -ErrorActionPreference Continue, but if you are correct that it continues after terminating errors, then you are correct that a Finally clause is not needed. But of course, the rest of your script may not make sense if the terminating error results in something being Null that you later expect to use.
Without the preference, a terminating error stops the script, but first the Finally clause runs to clean things up. This could be closing files or gracefully closing Excel, for example, so things aren't hanging in memory.
I don't recall seeing the Finally clause used, and I have not used it myself. But then, I don't recall getting terminating errors. I generally use Try clauses to trap things I expect could happen, then use break to exit and abort the script, as it may make little sense to continue.
Richard Mueller - MVP Enterprise Mobility (Identity and Access)
------------------------------------
Reply:
Hi, I need an example that use try-catch-finally clause where the -finally is **NECESSARY**
Why?
-- Bill Stewart [Bill_Stewart]
------------------------------------
What cluster size should I use on my disks?
I have been following the Windows Server forums for many years, and talked with many people about this topic. I see this topic come up regularly. Here is a new blog post by one of Microsoft's storage engineers on the topic of cluster size definition. Short article, but a good reference to keep around.
Posting in both 2016 and 2012 forums.
. : | : . : | : . tim
- Edited by Tim CerlingMVP Friday, January 13, 2017 10:12 PM
Exchange 2010 : error while creating new send connector
active directory operation failed on SRV-Domain.local This error is not retriable. Additional information: The name reference is invalid. This may be caused by replication latency between active directory domain controllers.
- Moved by Jason Johnston [MSFT]Microsoft employee Friday, January 13, 2017 7:54 PM Moving to correct forum. Please post to on-topic forum
Reply:
------------------------------------
Reply:
Hello,
How many domain controller you have ? No error on them ? Dcdiag ( https://technet.microsoft.com/en-gb/library/cc731968(v=ws.10).aspx ) and repadmin ( https://technet.microsoft.com/en-gb/library/cc770963(v=ws.10).aspx ) don't show any issue ?
Are you migrating from Exchange 2003 ? Is there any older version than Exchange 2010 in the organization ?
Regards,
- Edited by TooWiLLS Friday, January 13, 2017 4:07 PM
------------------------------------
Shortcut to Autofill UAC for LocalU Admin. Windows 7 Enterprize
- Changed type Bill_Stewart Friday, February 17, 2017 6:00 PM
- Moved by Bill_Stewart Friday, February 17, 2017 6:00 PM User did not read sticky post
Reply:
You cannot do this in Windows.
\_(ツ)_/
------------------------------------
Moved WSUS SUBDB to different SQL Instance. Config manager fail to synch with error Code 2168851714
Hi Team,
Due to some urgent requirement, we had to move WSUS DB (running SUP) from one SQL named instance to new SQL instance.
WSUS/SUP remains same only WSUS SUPDB is moved. No SUP role installation/or reinstallation is done after DB movement.
While synching from Config manager 'Synchronize Software updates' console , we are started getting attached error. I was going through some articles but seems those are not available now.
Could anyone suggest what should be done here to resolve the issue. I am sure its a unique issue and anyone from the team must have faced it... Any inputs will be appreciated. Thanks
Regards,
Reply:
Which Instructions/Guide did you follow to move the WSUS Database?
What happens if you try to open the WSUS Console?
Only one error code doesn't realy help...
- Edited by Michael-CM Thursday, January 12, 2017 9:52 AM
------------------------------------
Reply:
The simplest thing to do is to remove the SUP, uninstall WSUS, Reboot, Install WSUS , install the SUP.
How did you tell WSUS that you moved the db? What rights did you grant the WSUS services on the new SQL instance?
Garth Jones
Blog: http://www.enhansoft.com/blog Old Blog: http://smsug.ca/blogs/garth_jones/default.aspx
Twitter: @GarthMJ Book: System Center Configuration Manager Reporting Unleased
------------------------------------
Reply:
Hi Team,
I have followed the below articles. Difference is i have wsus running already on remote SQL (not WID/express) server instance.
Yes WSUS console is opening fine without error (modified registry on wsus pointing it to new instance).
I believe i have missed the screen shot in initial post . attaching now.
Regards,
------------------------------------
Reply:
Cheers Paul | http://sccmentor.com
------------------------------------
Task sequence with Diskpart command
Hi all,
I am just wondering if anyone has used CMD within the task sequence to clean the disks in the beginning of the task sequence...
Due to the reasons that we're using Symantec desktop encryption, we required to clean disk (within diskpart) so that rest of the task sequence can run.
Cheers
Danny
Reply:
Hi,
This post includes the commands that you need as well.
http://anupamsccmtips.blogspot.se/2014/06/use-of-diskpart-utility-in-sccm-task.html
Regards,
Jörgen
-- My System Center blog ccmexec.com -- Twitter @ccmexec
------------------------------------
Reply:
Jason | http://blog.configmgrftw.com | @jasonsandys
------------------------------------
System.Deployment.Application.DeploymentDownloadException (Unknown subtype)
I'm trying to deploy a XBAP application to an IIS 8.5 server
The deployment is successful
When trying to download the application I'm getting the following message,
ERROR SUMMARY
Below is a summary of the errors, details of these errors are listed later in the log.
* An exception occurred while downloading the application. Following failure messages were detected:
+ Downloading http://myserver/ITD/MDCICI/Application
Files/ICI_1_2_0_14/bin/Debug/ETSD_Encryption.dll.deploy did not succeed.
+ The remote server returned an error: (404) Not Found.
Can someone provide some insight on how to resolve this?
We checked and found that we have the proper MIME Types.
Could this have to do with Frontpage extensions?
Our IT Staff won't install them for security issues.
- Edited by cevjr08 Friday, January 13, 2017 2:14 PM
How to configure the multiple sitemaps in one website with menu control
Actually i had develop the asp.net project.This project has two members
admin,student.i had maintain two master pages with corresponding menu controls for member activities(admin,student).i used two sitemap files (Web.sitemap,student.sitemap)
i was configure the multiple sitemaps in one web configure file.i bind the student member activities to menu control(with in student masterpage)using sitemap but instead of admin activities are bind automatically to student master page i.e functionality second menu not working properly.two master pages are also bind the admin activities but i want to bind the activities for corresponding master pages by using sitemap and menu control.
Web.sitemap:
<?xml version="1.0" encoding="utf-8" ?> <siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" > <siteMapNode url="" title="" description=""> <siteMapNode url="Admin.aspx" title="Home" description="Home page" /> <siteMapNode url="StudentRegistration.aspx" title="Student registration" description="Studentregistration page" /> <siteMapNode url="AddLearningmaterial.aspx" title="Add material" description="AddLearningmaterial"> <siteMapNode url="Alphabets.aspx" title="Alphabets" description="Alphabets page"></siteMapNode> <siteMapNode url="Numbers.aspx" title="Numbers" description="Numbers page"></siteMapNode> <siteMapNode url="Animals.aspx" title="Animals" description="Animals page"></siteMapNode> <siteMapNode url="Fruits.aspx" title="Fruits" description="Fruits page"></siteMapNode> <siteMapNode url="Vegetables.aspx" title="Vegetables" description="Vegetables page"></siteMapNode> </siteMapNode> <siteMapNode url="Modifyingmaterial.aspx" title="Update material" description="Modifyingmaterial page"></siteMapNode> </siteMapNode> </siteMap>
student.sitemap
<?xml version="1.0" encoding="utf-8" ?> <siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" > <siteMapNode url="" title="" description=""> <siteMapNode url="Home.aspx" title="Home" description="Home page" /> <siteMapNode url="Viewmaterial.aspx" title="View material" description="Viewmaterial page" > <siteMapNode url="ViewAlphabets.aspx" title="Alphabets" description="Alphabets page"></siteMapNode> <siteMapNode url="viewNumbers.aspx" title="Numbers" description="Numbers page"></siteMapNode> <siteMapNode url="viewAnimals.aspx" title="Animals" description="Animals page"></siteMapNode> <siteMapNode url="viewFruits.aspx" title="Fruits" description="Fruits page"></siteMapNode> <siteMapNode url="viewVegetables.aspx" title="Vegetables" description="Vegetables page"></siteMapNode> </siteMapNode> </siteMapNode> </siteMap>
Configure multiple site maps in webconfig File:
<?xml version="1.0"?> <!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=169433 --> <configuration> <system.web> <siteMap defaultProvider="SiteMapDataSource1"> <providers> <clear/> <add name="SiteMapDataSource1" type="System.Web.XmlSiteMapProvider" siteMapFile="Web.sitemap" /> <add name="SiteMapDataSource2" type="System.Web.XmlSiteMapProvider" siteMapFile="student.sitemap" /> </providers> </siteMap> <compilation debug="true" targetFramework="4.5"/> <httpRuntime targetFramework="4.5"/> </system.web> </configuration>
Admin.master:
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Admin.master.cs" Inherits="Admin" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <style type="text/css"> body { font-family: Arial; font-size: 10pt; } .main_menu { width:240px; font-size:x-large; background-color: #8AE0F2; color: #000; text-align: center; height: 30px; line-height: 30px; margin-right: 5px; } .level_menu { width:257px; font-size:large; background-color: #000; color: #fff; text-align: center; height: 30px; line-height: 30px; margin- } .selected { background-color: #852B91; color: #fff; } /*.sub_menu { width: 110px; background-color: #000; color: #fff; text-align: center; height: 30px; line-height: 30px; margin- } .hover_menu { background-color: #990000; color:#fff; } .selected_menu { background-color: #FF6600; }*/ </style> <asp:ContentPlaceHolder id="head" runat="server"> </asp:ContentPlaceHolder> </head> <body> <form id="form1" runat="server"> <asp:Image ID="ImgELearn" runat="server" AlternateText="E-Learning" Height="202px" ImageUrl="~/Images/Title logo.png" Width="1020px" /> <div class="user"> <asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" ShowStartingNode="false" /> <asp:Menu ID="Menu" runat="server" DataSourceID="SiteMapDataSource1" Orientation="Horizontal" OnMenuItemDataBound="OnMenuItemDataBound"> <LevelMenuItemStyles> <asp:MenuItemStyle CssClass="main_menu" /> <asp:MenuItemStyle CssClass="level_menu" /> </LevelMenuItemStyles> <%--<DynamicMenuItemStyle CssClass="sub_menu" /> <DynamicHoverStyle CssClass="hover_menu" /> <StaticSelectedStyle CssClass="selected_menu" /> <StaticHoverStyle CssClass="hover_menu" />--%> </asp:Menu> </div> <div> <asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server"> </asp:ContentPlaceHolder> </div> </form> </body> </html>
Student.master:
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Student.master.cs" Inherits="Student" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <asp:ContentPlaceHolder id="head" runat="server"> </asp:ContentPlaceHolder> </head> <body> <form id="form1" runat="server"> <asp:Image ID="ImgELearn" runat="server" AlternateText="E-Learning" Height="202px" ImageUrl="~/Images/Title logo.png" Width="1020px" /> <div class="data"> <asp:SiteMapDataSource ID="SiteMapDataSource2" runat="server" ShowStartingNode="false" /> <%--<asp:SiteMapPath ID="SiteMapPath1" runat="server" PathSeparator=" > " RenderCurrentNodeAsLink="false"> </asp:SiteMapPath>--%> <asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDataSource2" Orientation="Horizontal" OnMenuItemDataBound="OnMenuItemDataBound"> <LevelMenuItemStyles> <asp:MenuItemStyle CssClass="main_menu" /> <asp:MenuItemStyle CssClass="level_menu" /> </LevelMenuItemStyles> </asp:Menu> </div> <div> <asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server"> </asp:ContentPlaceHolder> </div> </form> </body> </html>This is my code.I think way of developing the project is correct but i felt small
mistake according sitemap,menu control and web.config configuration.if u know,pls correct the code. i don't know what is the xmlsitemap defaultProvider.pls give me about defaultProvider and also give about name attributes in add tag in detail.
i confused name attributes names what i am given.pls check once.help me.
- Moved by Sabah ShariqMVP Friday, January 13, 2017 12:09 PM Related to ASP.Net
- Changed type ramesh rammi Friday, January 13, 2017 12:51 PM not suitable forum
Reply:
This is Visual C# forum. As your issue is related to Web, please ask your question into ASP.Net forum for getting quick response. I am moving your thread to off-topic.
https://forums.asp.net/
Your understanding and cooperation will be grateful.
Thanks,
Sabah Shariq
[If a post helps to resolve your issue, please click the "Mark as Answer" of that post or click "Vote as helpful" button of that post. By marking a post as Answered or Helpful, you help others find the answer faster. ]
------------------------------------
Reply:
------------------------------------
Script launched by Group policy only executed after 7-10 seconds
Dears,
Could someone help to find out how I could resolve the following issue.
I'm running windows server 2012 R2 via a remote desktop connection. We have a login script that we would like to be applied immediately when the desktop is shown to the end users. Currently It takes between 7 and 10 seconds before this script is launched.
So the script is called via the following definition in the group policy. It creates an entry in the registry and this entry is executed only after 7-10 seconds.
General
| Action | Update |
Properties
| Hive | HKEY_CURRENT_USER |
| Key path | Software\Microsoft\Windows\CurrentVersion\Run |
| Value name | Runlogin |
| Value type | REG_SZ |
| Value data | <Path to the file>\Login.cmd |
I have already tried to put at server level the same entry in the registry manually, I have also tried to define a local group policy by using the logon entry (Computer configuration - administrative templates - system - Logon -Run these programs at user logon) but all my attempt failed. This simple script is just running after 7-10 seconds after the desktop is shown to the end users.
Does anybody already encountered similar issue ? Any tips is more than welcome.
Reply:
------------------------------------
Reply:
Thanks for the reply.
I have also tried local group policy by using the logon entry (Computer configuration - administrative templates - system - Logon -Run these programs at user logon)
But it started also after 7-10 seconds.
What do you mean by real logon script ?
------------------------------------
Reply:
------------------------------------
Guess what !......Announcing Windows 10 Insider Preview Build 15007 for PC and Mobile
- Edited by david hk129 Friday, January 13, 2017 2:22 AM
Reply:
------------------------------------
Reply:
Reminder................ re-enable System Protection ( mine was turned off.)
------------------------------------
m
im needing to know how to reset my pc it is not working like before
how do i factory reset my hp pavilion g6 laptop?
Reply:
I've found an article. It's for Windows 10, but it would be helpful.
HP PCs - Performing an HP System Recovery (Windows 10)
------------------------------------
No comments:
Post a Comment