Sunday, January 23, 2022

I can not find my Taskbar and the print Feature?

I can not find my Taskbar and the print Feature?

Please restore my Taskbar and my Printing feature.

Reply:
Can you please share a screenshot ? 

Arnav Sharma | http://arnavsharma.net/ 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:

Kindly go through the following:

Troubleshoot problems opening the Start menu or Cortana

For printing things you need to uninstall or, reinstall latest Printer driver from it's manufacturing driver support site along with software application.


S.Sengupta, Windows Insider MVP


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

Strange behavior with arays

This morning I adjusted the description on many OU's in Active Directory in the Users hive, and wanted to propagate these changes to the computers hive as well. However when performing following syntax the result came back empty

Foreach ($OU in $Source) {Get-ADOrganizationalUnit -Filter 'Name -eq "$OU.Name"' -SearchBase "OU=whatever...." -server $dom | Set-ADOrganizationalUnit -description $OU.Description -server $Dom}



Started tropubleshooting and saw that Get-ADOrganizationalUnit -Filter 'Name -eq "$OU.Name"' did not return anything. After a lot of troubleshooting it came down to this, when i run

Foreach ($OU in $Source) {Get-ADOrganizationalUnit -Filter 'Name -eq $OU.Name' -SearchBase "OU=whatever...." -server $dom | Set-ADOrganizationalUnit -description $OU.Description -server $Dom}

Everything works as expected. 10 minutes later the helpdesk starts calling stating they could not longer create mailboxes with our mailbox creation wizard which was written with powershell. The same problem was seen there. It used

$verUs = Get-aduser -filter 'SamAccountName -like "$SamAc"' -Server $Dom

Where $VerUs ended up Empty

Change the code to use 

$VerUs = Get-aduser 'SamAccountName -eq $SamAc' -server $dom
Which resolved the issue. This code has been running more then one year and i personally ran the code again last friday without any issue. Which brings on the next question "What Changed?!"

  


Answers provided are coming from personal experience, and come with no warranty of success. I as everybody else do make mistakes.



  • Edited by Killerbe Monday, July 3, 2017 9:59 AM
  • Changed type Bill_Stewart Monday, September 11, 2017 3:38 PM

Reply:

You need to learn how to use strings in PowerShell:

$verUs = Get-aduser -filter "SamAccountName -eq '$SamAc'" -Server$Dom

Look up how to use single and double quotes. Understanding the difference is critical.


\_(ツ)_/


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

Strange, obviously you cannot trust official documentation from Microsoft?

Get-ADUser -Filter 'Name -like "*SvcAccount"' | FT Name,SamAccountName -A

https://technet.microsoft.com/en-us/library/ee617241.aspx?f=255&MSPPError=-2147217396

Besides i do not want to be nagging, but the script did work until this morning? 


Answers provided are coming from personal experience, and come with no warranty of success. I as everybody else do make mistakes.


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

This: Get-ADUser -Filter 'Name -like "*SvcAccount"'  is wrong and will never work.

As I noted.  You need to learn how to use expandable strings.  Single quotes cannot be expanded.

Yes - there are occasional mistakes but learning to use the basics can help you to avoid these obvious mistakes.

When looking for a SamAccountName do NOT use "-like" with a wild card or you may get back bad info.


\_(ツ)_/


------------------------------------
Reply:
This: Get-ADUser -Filter 'Name -like "*SvcAccount"' is wrong and will never work.

Actually that syntax does work; I just tested it. It's just quite slow.


-- Bill Stewart [Bill_Stewart]


------------------------------------
Reply:
So you're magic. I just tested it and it does not work here in my environment. Funny.

Grüße - Best regards

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


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

The variable ism null som the result is this:

Get-ADUser -Filter 'Name -like "*"'

This will then return ALL accounts which is why it is slow.

PS C:\scripts> $svcaccount = 'testuser'  PS C:\scripts> 'Name -like "*$SvcAccount*"'  Name -like "*$SvcAccount*"  PS C:\scripts> "Name -like '*$SvcAccount*'"  Name -like '*testuser*'  PS C:\scripts>  


\_(ツ)_/


------------------------------------
Reply:
Hmmm ... in my environment it returns exactly "nothing" ... "zero" ... "niente" ... "nada" ... "ничего"  ... "nix"  :-D

Grüße - Best regards

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


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

To clear thing things  up the string "Get-ADUser -Filter 'Name -like "*SvcAccount"' | FT Name,SamAccountName -A" is quoted from the Microsoft article

https://technet.microsoft.com/en-us/library/ee617241.aspx?f=255&MSPPError=-2147217396

This is my understanding on the subject:

Single quotes (') are literal quotes, and therefore not treated as a PowerShell object.

Double quotes are dynamic, wherefore PowerShell will handle the content as an array or object.

But that obviously is an incorrect interpretation.

This explains its actually quite well, thanks for pointing that out:

http://jon.netdork.net/2015/09/08/powershell-and-single-vs-double-quotes/

 

 


Answers provided are coming from personal experience, and come with no warranty of success. I as everybody else do make mistakes.


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

The base concept comes from  "C" language compiler directives. In "C" and other languages a string is either an "expandable" string or a "static" string.

In C@ we use @"string contents" to declare a static string.  And just quotes for an expandable string.

An expandable string in PowerShell and other languages is one that is used to embed meta characters in that can be processed by the compiler to produce a modified version of the string.

In PowerShell double quotes indicate an expandable string.  Variables within the string will be replaced by the current value of the variable. Strings in single quotes will not have embedded characters addressed as replacement directives.

Certain special character sequences in a string will be expanded to their replacement values as well as variables and subexpressions $().

With "Filter" expressions the expansion does not exactly follow the rules of strings.  The string is parsed and passed to the filter which converts it.  Variables will be extracted from the environment when possible but will behave better when we use double quotes as the variables will be expanded before passing to the CmdLet.

The issue her is the way the filter works and not just about string parsing.

When using double quotes it is necessary to surround the variable with single quotes.  When using single quotes this is not necessary but you cannot pass objects or the properties of objects in a single quoted string.  They must be expanded before passing.


\_(ツ)_/


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

What is a handy use for SQL?

I am thinking of installing the SQL Server, but what can I use it for?

Reply:
SQL Server is used to store and retrieve data - typically rows in tables.

------------------------------------
Reply:
I would like to know why you want to install SQL Server ? ;)

Thanks, Nithin


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

SQL Server  is one of the best RDBMS in the market. The general purpose is to save the data in form tables and retrieve it by using select queries.

If you want to know more about SQL Server - I will prefer go through books online or any Press Books for MS SQL.


Thanks, Satish Kumar. Please mark as this post as answered if my anser helps you to resolves your issue :)


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

What is Safe Mode and How to enter Safe Mode in Windows

Safe mode is the special mode of windows to start when a critical problem interfere with the normal operation of windows. It is actually diagnostic startup mode in Windows OS. You require safe mode in windows when you cannot run the windows normally and the safe mode gives limited access to windows. 

office 365 issues

im trying to install office 365 on my laptop it is runing on windows 7 and when i log in on the website so i can put the product key in its just goling blank and not letting me do anything i have tried the same steps on my phone and it works fine any ideas?????

Who will be announced the next Microsoft TechNet Guru? Read more about July 2017 competition:


What is TechNet Guru Competition?

Each month the TechNet Wiki council organizes a contest of the best articles posted that month.
This is your chance to be announced as MICROSOFT TECHNOLOGY GURU OF THE MONTH!

One winner in each category will be selected each month for glory and adoration by the MSDN/TechNet Ninjas and community as a whole. Winners will be announced in dedicated blog post that will be published in Microsoft Wiki Ninjas blog, a tweet from the Wiki Ninjas Twitter account, links will be published at Microsoft TNWiki group on Facebook, and other acknowledgement from the community will follow.

Some of our biggest community voices and many MVPs have passed through these halls on their way to fame and fortune.

If you have already made a contribution in the forums or gallery or you published a nice blog, then you can simply convert it into a shared wiki article, reference the original post, and register the article for the TechNet Guru Competition. The articles must be written in June 2017 and must be in English. However, the original blog or forum content can be from before June.

Come and see who is making waves in all your favorite technologies.
Maybe it will be you!


Who can join the Competition?

Anyone who has basic knowledge and the desire to share the knowledge is welcome. Articles can appeal to beginners or discusse advanced topics. All you have to do is to add your article to TechNet Wiki from your own specialty category.


How can you win?

  1. Please copy/Write over your Microsoft technical solutions and revelations to TechNet Wiki.
  2. Add a link to your new article on THIS WIKI COMPETITION PAGE (so we know you've contributed)
  3. (Optional but recommended) Add a link to your article at the TechNet Wiki group on Facebook. The group is very active and people love to help, you can get feedback and even direct improvements in the article before the contest starts.

Do you have any question or want more information?

Feel free to ask any questions below, or Join us at the official Microsoft TechNet Wiki groups on facebook.
Read More about TechNet Guru Awards.

   

If you win, people will sing your praises online and your name will be raised as Guru of the Month

Thanks in advance!
-TechNet Wiki Council

 



Richard Mueller - MVP Enterprise Mobility (Identity and Access)

Power query

I have the bottom excel file that i am using in power query. I want to achieve the results at the bottom using power query since this will be an occurring task i would like to automate it. 

2012 Actuals Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec YTD
Gross Rev  $ $ $ $ $ $ $ $ $ $ $ $ $
NAF $ $ $ $ $ $ $ $ $ $ $ $ $
Ocean $ $ $ $ $ $ $ $ $ $ $ $ $
AIR $ $ $ $ $ $ $ $ $ $ $ $ $
Transportation Expense $ $ $ $ $ $ $ $ $ $ $ $ $
NAF $ $ $ $ $ $ $ $ $ $ $ $ $
Ocean $ $ $ $ $ $ $ $ $ $ $ $ $
AIR $ $ $ $ $ $ $ $ $ $ $ $ $
Operating Expense $ $ $ $ $ $ $ $ $ $ $ $ $
NAF $ $ $ $ $ $ $ $ $ $ $ $ $
Ocean $ $ $ $ $ $ $ $ $ $ $ $ $
AIR $ $ $ $ $ $ $ $ $ $ $ $ $
Non operating Expense $ $ $ $ $ $ $ $ $ $ $ $ $
NAF $ $ $ $ $ $ $ $ $ $ $ $ $
Ocean $ $ $ $ $ $ $ $ $ $ $ $ $
AIR $ $ $ $ $ $ $ $ $ $ $ $ $
Operating profit $ $ $ $ $ $ $ $ $ $ $ $ $
2013 Actuals
Gross Rev  $ $ $ $ $ $ $ $ $ $ $ $ $
NAF $ $ $ $ $ $ $ $ $ $ $ $ $
Ocean $ $ $ $ $ $ $ $ $ $ $ $ $
AIR $ $ $ $ $ $ $ $ $ $ $ $ $
Transportation Expense $ $ $ $ $ $ $ $ $ $ $ $ $
NAF $ $ $ $ $ $ $ $ $ $ $ $ $
Ocean $ $ $ $ $ $ $ $ $ $ $ $ $
AIR $ $ $ $ $ $ $ $ $ $ $ $ $
Operating Expense $ $ $ $ $ $ $ $ $ $ $ $ $
NAF $ $ $ $ $ $ $ $ $ $ $ $ $
Ocean $ $ $ $ $ $ $ $ $ $ $ $ $
AIR $ $ $ $ $ $ $ $ $ $ $ $ $
Non operating Expense $ $ $ $ $ $ $ $ $ $ $ $ $
NAF $ $ $ $ $ $ $ $ $ $ $ $ $
Ocean $ $ $ $ $ $ $ $ $ $ $ $ $
AIR $ $ $ $ $ $ $ $ $ $ $ $ $
Operating profit $ $ $ $ $ $ $ $ $ $ $ $ $


Results i am looking for from above table using power query is at the bottom: 

2013 revenue NAF
2013 revenue Ocean
2013 revenue Air
2013 Transportation Expense NAF
2013 Transportation Expense Ocean
2013 Transportation Expense Air
2013 Operating Expense NAF
2013 Operating Expense Ocean
2013 Operating Expense Air
2013 Operating Expense NAF
2013 Operating Expense Ocean
2013 Operating Expense Air
2013 Non Operating Expense NAF
2013 Non Operating Expense Ocean
2013 Non Operating Expense Air
2014 revenue NAF
2014 revenue Ocean
2014 revenue Air
2014 Transportation Expense NAF
2014 Transportation Expense Ocean
2014 Transportation Expense Air
2014 Operating Expense NAF
2014 Operating Expense Ocean
2014 Operating Expense Air
2014 Operating Expense NAF
2014 Operating Expense Ocean
2014 Operating Expense Air
2014 Non Operating Expense NAF
2014 Non Operating Expense Ocean
2014 Non Operating Expense Air


Reply:

Excel 2010/2013/2016 Power Query (aka Get & Transform)
With Modulus(4) and Append.
For more years, duplicate Table1 and tweak.
Tweaked Table3 can be loaded into PowerPivot Data Model.
http://www.mediafire.com/file/wlfjmjq6lzu2p39/07_07_17.xlsx


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

This should work:

(see updated code in subsequent post)

Basically what we're doing here is creating an index, and a list of indexes where the first column contains the word "Actuals", which is how we're choosing the lines that have the Year value in them. Then we're converting that to a number to round out the list.

Next, we add a custom column to the original table where we choose the most recent year with an index that is less than or equal to the current row index - essentially, picking the closest header above us, and then populating the column with that value. We have to use an ad hoc function to give us row context (in line #"Added Year to MainTable").

Once we have that, it's a simple matter of unpivoting the columns and then doing a Group By to roll up by year and (let's say) Account name.

EDIT: Just noticed that while I've got the roll-up by year, I neglected the 'Expense Type' (the middle column). The solution is very similar; I'll respond with an updated answer when I've got a chance.

  • Edited by Chris Dutch Tuesday, July 11, 2017 7:23 PM removed old code

------------------------------------
Reply:
I am getting an error at "Isolated headers"

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

I just tried it on my test workbook and didn't have any issues.

Is the tab the data's on named 'Sheet1'? If not, you'll have to update the line:

 Sheet1_Sheet = Source{[Item="Sheet1",Kind="Sheet"]}[Data],

------------------------------------
Reply:
OK, here's the updated code to handle both the Account and whatever "AIR/Ocean/NAF" is:
let   Source = Excel.Workbook(File.Contents(<<FILEPATH>>), null, true),   Sheet1_Sheet = Source{[Item=<<TAB NAME>>,Kind="Sheet"]}[Data],   MainTable = Table.AddIndexColumn(Sheet1_Sheet, "Index", 0, 1),   #"Isolate Headers" = Table.SelectRows(MainTable, each Text.Contains([Column1],"Actuals")),   #"Removed Other Columns" = Table.SelectColumns(#"Isolate Headers",{"Column1", "Index"}),   #"Extracted First Characters" = Table.TransformColumns(#"Removed Other Columns", {{"Column1", each Text.Start(_, 4), type text}}),   #"Cleaned Year" = Table.TransformColumnTypes(#"Extracted First Characters",{{"Column1", Int64.Type}}),   #"Isolate Accounts" = Table.SelectRows(MainTable, each not Text.Contains([Column1],"Actuals") and    [Column1] <> "Ocean" and   [Column1] <> "NAF" and   [Column1] <> "AIR"),   #"Removed Other Columns1" = Table.SelectColumns(#"Isolate Accounts",{"Column1", "Index"}),   #"Added Year to MainTable" = Table.AddColumn(MainTable, "Year", each ((N)=> Table.SelectRows(#"Cleaned Year", each [Index] = (   (I)=> List.Max(Table.SelectRows(#"Cleaned Year", each [Index] <= I)[Index]))(N)){0}[Column1])([Index])),   #"Added Account to MainTable" = Table.AddColumn(#"Added Year to MainTable", "Account", each ((N)=> Table.SelectRows(#"Removed Other Columns1", each [Index] = (   (I)=> List.Max(Table.SelectRows(#"Removed Other Columns1", each [Index] <= I)[Index]))(N)){0}[Column1])([Index])),   #"Filtered Out Headers and Accounts" = Table.SelectRows(#"Added Account to MainTable", each [Column1] = "NAF" or [Column1] = "Ocean" or [Column1] = "AIR"),   #"Unpivoted Columns" = Table.UnpivotOtherColumns(#"Filtered Out Headers and Accounts", {"Column1", "Account", "Index", "Year"}, "Attribute", "Value"),   #"Grouped Rows" = Table.Group(#"Unpivoted Columns", {"Account", "Column1", "Year"}, {{"Amount", each List.Sum([Value]), type number}})  in   #"Grouped Rows"


  • Edited by Chris Dutch Tuesday, July 11, 2017 7:24 PM removed PII

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

windows 10 mobile error 0x85002028

Lumia 930 with build .15234.164...return error code as a title...no sync 

the device does not support the server version

and now ??


Reply:
If you Soft Reset the device does it help?

S.Sengupta, Windows Experience MVP


------------------------------------
Reply:
same problem and that does not help

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

SCOM 2012 R2 Thick client alert resolution update issue

Hi All,

We are using SCOM 2012 R2 UR 12, and the issue we are facing is that the think client is not showing the correct alert resolution state. For example when I check for an alert in Active Alert the resolution state is showing it as New but when I double click it it shows the actual modified one. This creates un-necessary confusion while checking alert via console. Not sure what is the problem. Please help.

Regards,

Naresh


Reply:

Any one to help me please!!!

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

I am trying to update the resolution to '255' to close all rule alerts. I can see the change in the DB but the same is not reflecting in SCOM console but when I double click and open the alert it shows the correct status.

Did any one faced same issue?

UPDATE AlertView

SET ResolutionState = '250'

where IsMonitorAlert = '0' and Severity = '2' and ResolutionState != '255'


Regards,

Naresh.


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

Any one to help me please!!! Is this the right forum to post the question or I have posted it on a wrong forum experts.

Thanks,

Naresh.


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

Hi All,

Is there any one to help me on my issue.

Thanks in advance,

Naresh


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

Hi All,

Is there any one to help me on my issue.

Thanks in advance,

Naresh


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

Hi All,

Is there any one to help me on my issue.

Thanks in advance,

Naresh


------------------------------------
Reply:
Is the console refreshing OK otherwise?

&quot;Fear disturbs your concentration&quot;


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

Thank andyinsdca for your reply.

Yes it does refresh but the update which I do in the back end is not reflecting unless I reopen the SCOM console to view the new state change.

Regards,

Naresh


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

Who will be announced the next Microsoft TechNet Guru? Read more about July 2017 competition:


What is TechNet Guru Competition?

Each month the TechNet Wiki council organizes a contest of the best articles posted that month.
This is your chance to be announced as MICROSOFT TECHNOLOGY GURU OF THE MONTH!

One winner in each category will be selected each month for glory and adoration by the MSDN/TechNet Ninjas and community as a whole. Winners will be announced in dedicated blog post that will be published in Microsoft Wiki Ninjas blog, a tweet from the Wiki Ninjas Twitter account, links will be published at Microsoft TNWiki group on Facebook, and other acknowledgement from the community will follow.

Some of our biggest community voices and many MVPs have passed through these halls on their way to fame and fortune.

If you have already made a contribution in the forums or gallery or you published a nice blog, then you can simply convert it into a shared wiki article, reference the original post, and register the article for the TechNet Guru Competition. The articles must be written in June 2017 and must be in English. However, the original blog or forum content can be from before June.

Come and see who is making waves in all your favorite technologies.
Maybe it will be you!


Who can join the Competition?

Anyone who has basic knowledge and the desire to share the knowledge is welcome. Articles can appeal to beginners or discusse advanced topics. All you have to do is to add your article to TechNet Wiki from your own specialty category.


How can you win?

  1. Please copy/Write over your Microsoft technical solutions and revelations to TechNet Wiki.
  2. Add a link to your new article on THIS WIKI COMPETITION PAGE (so we know you've contributed)
  3. (Optional but recommended) Add a link to your article at the TechNet Wiki group on Facebook. The group is very active and people love to help, you can get feedback and even direct improvements in the article before the contest starts.

Do you have any question or want more information?

Feel free to ask any questions below, or Join us at the official Microsoft TechNet Wiki groups on facebook.
Read More about TechNet Guru Awards.

   

If you win, people will sing your praises online and your name will be raised as Guru of the Month

Thanks in advance!
-TechNet Wiki Council

 



Richard Mueller - MVP Enterprise Mobility (Identity and Access)


Reply:
Aprils winners still haven't been picked. 

If this is helpful please mark it so. Also if this solved your problem mark as answer.


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

April winners were announced in this blog post:

https://blogs.technet.microsoft.com/wikininjas/2017/05/16/april-2017-technet-guru-winners/

May winners were announced here:

https://blogs.technet.microsoft.com/wikininjas/2017/06/22/its-the-technet-guru-awards-may-2017/

June is still being judged, but the winners should be announced soon.


Richard Mueller - MVP Enterprise Mobility (Identity and Access)


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

windows server 2008

Hi Team,

Can i use windos 2008 small business server premium virtual key for physical machine ? i cannot find physical key !!

  • Moved by BrianEhMVP Tuesday, July 11, 2017 3:12 PM

User Cannot Change Password : Complexity Rules not Met

I have users in a particular OU that cannot change their password. The admin has to set it for him.

The users in this OU cannot change their password on any computer. I have turned off password policy on the domain and the Local Group policy.

I was wondering where to look next?

            

Microsoft (R) Windows (R) Operating System Group Policy Result tool v2.0
c 2013 Microsoft Corporation. All rights reserved.

Created on 11/7/2016 at 9:30:10 AM



RSOP data for LINCOLN\businesslab17 on  : Logging Mode
-----------------------------------------------------------------

OS Configuration:            Member Server
OS Version:                  6.3.9600
Site Name:                   N/A
Roaming Profile:             N/A
Local Profile:               C:\Users\businesslab17
Connected over a slow link?: No


USER SETTINGS
--------------
    CN=businesslab17,OU=Business Lab,OU=XXX,DC=XXXX,DC=com
    Last time Group Policy was applied: 11/7/2016 at 9:27:11 AM
    Group Policy was applied from:      
    Group Policy slow link threshold:   500 kbps
    Domain Name:                        LINCOLN
    Domain Type:                        Windows 2008 or later

    Applied Group Policy Objects
    -----------------------------
        BusinessLab
        Default Domain Policy
        Shortcuts

    The following GPOs were not applied because they were filtered out
    -------------------------------------------------------------------
        Local Group Policy
            Filtering:  Not Applied (Empty)

    The user is a part of the following security groups
    ---------------------------------------------------
        Domain Users
        Everyone
        BUILTIN\Users
        Remote Desktop Users
        REMOTE INTERACTIVE LOGON
        NT AUTHORITY\INTERACTIVE
        NT AUTHORITY\Authenticated Users
        This Organization
        LOCAL
        XXXXBusinessLabStations
        Authentication authority asserted identity
        Medium Mandatory Level

    The user has the following security privileges
    ----------------------------------------------


    Resultant Set Of Policies for User
    -----------------------------------

        Software Installations
        ----------------------
            N/A

        Logon Scripts
        -------------
            N/A

        Logoff Scripts
        --------------
            N/A

        Public Key Policies
        -------------------
            N/A

        Administrative Templates
        ------------------------
            N/A

        Folder Redirection
        ------------------
            N/A

        Internet Explorer Browser User Interface
        ----------------------------------------
            N/A

        Internet Explorer Connection
        ----------------------------
            N/A

        Internet Explorer URLs
        ----------------------
            N/A

        Internet Explorer Security
        --------------------------
            N/A

        Internet Explorer Programs
        --------------------------
            N/A



  • Edited by LCSDJoe Monday, November 7, 2016 6:00 PM

Reply:

I would check to see if someone has set fine grained passwords in the AD Administrative Center: https://blogs.technet.microsoft.com/canitpro/2013/05/29/step-by-step-enabling-and-using-fine-grained-password-policies-in-ad/

These policies overwrite anything in group policy.

You can access it through the tools menu in System Manager.

Another possibility is that the user account has "user cannot change password" ticked in AD Users and Computers.


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

Graphics card in windows 7 professional

Hello to All:    I am a new user:        I have an HP Compaq Slim Line computer with OS of Windows 7 Professional 64 bit.     I have an intel graphics card  DirectX 11     I am looking to upgrade to windows 10 Professional,   will the graphics card i have work with windows 10  or will i have to upgrade the card.

Thanks          I hope someone has the answer for me.

Beep01


Reply:

See these links to review specification requirements:

https://www.microsoft.com/en-us/windows/windows-10-specifications

http://www.pcmag.com/article2/0,2817,2488355,00.asp

http://www.zdnet.com/article/heres-how-you-can-still-get-a-free-windows-10-upgrade/


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

Just FYI, Deploy Always On VPN with Windows 10 Clients and Windows Server 2016

New blog post, "Deploy Always On VPN with Windows 10 Clients and Windows Server 2016," at https://aka.ms/aovpn

Thanks -


James McIllece

Just FYI, blog post, "Deploy Always On VPN with Windows 10 Clients and Windows Server 2016"

New blog post, "Deploy Always On VPN with Windows 10 Clients and Windows Server 2016," at https://aka.ms/aovpn

Thanks -


James McIllece

Who will be announced the next Microsoft TechNet Guru? Read more about July 2017 competition:


What is TechNet Guru Competition?

Each month the TechNet Wiki council organizes a contest of the best articles posted that month.
This is your chance to be announced as MICROSOFT TECHNOLOGY GURU OF THE MONTH!

One winner in each category will be selected each month for glory and adoration by the MSDN/TechNet Ninjas and community as a whole. Winners will be announced in dedicated blog post that will be published in Microsoft Wiki Ninjas blog, a tweet from the Wiki Ninjas Twitter account, links will be published at Microsoft TNWiki group on Facebook, and other acknowledgement from the community will follow.

Some of our biggest community voices and many MVPs have passed through these halls on their way to fame and fortune.

If you have already made a contribution in the forums or gallery or you published a nice blog, then you can simply convert it into a shared wiki article, reference the original post, and register the article for the TechNet Guru Competition. The articles must be written in June 2017 and must be in English. However, the original blog or forum content can be from before June.

Come and see who is making waves in all your favorite technologies.
Maybe it will be you!


Who can join the Competition?

Anyone who has basic knowledge and the desire to share the knowledge is welcome. Articles can appeal to beginners or discusse advanced topics. All you have to do is to add your article to TechNet Wiki from your own specialty category.


How can you win?

  1. Please copy/Write over your Microsoft technical solutions and revelations to TechNet Wiki.
  2. Add a link to your new article on THIS WIKI COMPETITION PAGE (so we know you've contributed)
  3. (Optional but recommended) Add a link to your article at the TechNet Wiki group on Facebook. The group is very active and people love to help, you can get feedback and even direct improvements in the article before the contest starts.

Do you have any question or want more information?

Feel free to ask any questions below, or Join us at the official Microsoft TechNet Wiki groups on facebook.
Read More about TechNet Guru Awards.

   

If you win, people will sing your praises online and your name will be raised as Guru of the Month

Thanks in advance!
-TechNet Wiki Council

 



Richard Mueller - MVP Enterprise Mobility (Identity and Access)

Who will be announced the next Microsoft TechNet Guru? Read more about July 2017 competition:


What is TechNet Guru Competition?

Each month the TechNet Wiki council organizes a contest of the best articles posted that month.
This is your chance to be announced as MICROSOFT TECHNOLOGY GURU OF THE MONTH!

One winner in each category will be selected each month for glory and adoration by the MSDN/TechNet Ninjas and community as a whole. Winners will be announced in dedicated blog post that will be published in Microsoft Wiki Ninjas blog, a tweet from the Wiki Ninjas Twitter account, links will be published at Microsoft TNWiki group on Facebook, and other acknowledgement from the community will follow.

Some of our biggest community voices and many MVPs have passed through these halls on their way to fame and fortune.

If you have already made a contribution in the forums or gallery or you published a nice blog, then you can simply convert it into a shared wiki article, reference the original post, and register the article for the TechNet Guru Competition. The articles must be written in June 2017 and must be in English. However, the original blog or forum content can be from before June.

Come and see who is making waves in all your favorite technologies.
Maybe it will be you!


Who can join the Competition?

Anyone who has basic knowledge and the desire to share the knowledge is welcome. Articles can appeal to beginners or discusse advanced topics. All you have to do is to add your article to TechNet Wiki from your own specialty category.


How can you win?

  1. Please copy/Write over your Microsoft technical solutions and revelations to TechNet Wiki.
  2. Add a link to your new article on THIS WIKI COMPETITION PAGE (so we know you've contributed)
  3. (Optional but recommended) Add a link to your article at the TechNet Wiki group on Facebook. The group is very active and people love to help, you can get feedback and even direct improvements in the article before the contest starts.

Do you have any question or want more information?

Feel free to ask any questions below, or Join us at the official Microsoft TechNet Wiki groups on facebook.
Read More about TechNet Guru Awards.

   

If you win, people will sing your praises online and your name will be raised as Guru of the Month

Thanks in advance!
-TechNet Wiki Council

 



Richard Mueller - MVP Enterprise Mobility (Identity and Access)

After Windows 10 updates we are asked to enter the Bitlocker encryption key every time

Hello,

we activated Bitlocker on some of our PCs with Windows 10 and now everytime we have Win10 updates and the pc reboots, we are first thing asked to enter the Bitlocker encrytpion key to be able to proceed with the boot.

Is there anyway to avoid this behaviour?

Thank you in advance,

Marcello


Reply:

Hi Marcello.

Be aware that updates in general don't trigger bitlocker recovery. Not even feauture upgrades (the big OS upgrades that require several reboots) will trigger bitlocker recovery. I can assure you that we never even saw a single time that updates triggered recovery in our win10 network that exists for about 1 1/2 years and is fully bitlocked.

What could be a problem is firmware updates. If your update process allows firmware updates and delivers them automatically, you will run into this if you don't suspend bitlocker before.


------------------------------------
Reply:
Thank you.

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

Who will be announced the next Microsoft TechNet Guru? Read more about July 2017 competition:


What is TechNet Guru Competition?

Each month the TechNet Wiki council organizes a contest of the best articles posted that month.
This is your chance to be announced as MICROSOFT TECHNOLOGY GURU OF THE MONTH!

One winner in each category will be selected each month for glory and adoration by the MSDN/TechNet Ninjas and community as a whole. Winners will be announced in dedicated blog post that will be published in Microsoft Wiki Ninjas blog, a tweet from the Wiki Ninjas Twitter account, links will be published at Microsoft TNWiki group on Facebook, and other acknowledgement from the community will follow.

Some of our biggest community voices and many MVPs have passed through these halls on their way to fame and fortune.

If you have already made a contribution in the forums or gallery or you published a nice blog, then you can simply convert it into a shared wiki article, reference the original post, and register the article for the TechNet Guru Competition. The articles must be written in June 2017 and must be in English. However, the original blog or forum content can be from before June.

Come and see who is making waves in all your favorite technologies.
Maybe it will be you!


Who can join the Competition?

Anyone who has basic knowledge and the desire to share the knowledge is welcome. Articles can appeal to beginners or discusse advanced topics. All you have to do is to add your article to TechNet Wiki from your own specialty category.


How can you win?

  1. Please copy/Write over your Microsoft technical solutions and revelations to TechNet Wiki.
  2. Add a link to your new article on THIS WIKI COMPETITION PAGE (so we know you've contributed)
  3. (Optional but recommended) Add a link to your article at the TechNet Wiki group on Facebook. The group is very active and people love to help, you can get feedback and even direct improvements in the article before the contest starts.

Do you have any question or want more information?

Feel free to ask any questions below, or Join us at the official Microsoft TechNet Wiki groups on facebook.
Read More about TechNet Guru Awards.

   

If you win, people will sing your praises online and your name will be raised as Guru of the Month

Thanks in advance!
-TechNet Wiki Council

 



Richard Mueller - MVP Enterprise Mobility (Identity and Access)

Who will be announced the next Microsoft TechNet Guru? Read more about July 2017 competition:


What is TechNet Guru Competition?

Each month the TechNet Wiki council organizes a contest of the best articles posted that month.
This is your chance to be announced as MICROSOFT TECHNOLOGY GURU OF THE MONTH!

One winner in each category will be selected each month for glory and adoration by the MSDN/TechNet Ninjas and community as a whole. Winners will be announced in dedicated blog post that will be published in Microsoft Wiki Ninjas blog, a tweet from the Wiki Ninjas Twitter account, links will be published at Microsoft TNWiki group on Facebook, and other acknowledgement from the community will follow.

Some of our biggest community voices and many MVPs have passed through these halls on their way to fame and fortune.

If you have already made a contribution in the forums or gallery or you published a nice blog, then you can simply convert it into a shared wiki article, reference the original post, and register the article for the TechNet Guru Competition. The articles must be written in June 2017 and must be in English. However, the original blog or forum content can be from before June.

Come and see who is making waves in all your favorite technologies.
Maybe it will be you!


Who can join the Competition?

Anyone who has basic knowledge and the desire to share the knowledge is welcome. Articles can appeal to beginners or discusse advanced topics. All you have to do is to add your article to TechNet Wiki from your own specialty category.


How can you win?

  1. Please copy/Write over your Microsoft technical solutions and revelations to TechNet Wiki.
  2. Add a link to your new article on THIS WIKI COMPETITION PAGE (so we know you've contributed)
  3. (Optional but recommended) Add a link to your article at the TechNet Wiki group on Facebook. The group is very active and people love to help, you can get feedback and even direct improvements in the article before the contest starts.

Do you have any question or want more information?

Feel free to ask any questions below, or Join us at the official Microsoft TechNet Wiki groups on facebook.
Read More about TechNet Guru Awards.

   

If you win, people will sing your praises online and your name will be raised as Guru of the Month

Thanks in advance!
-TechNet Wiki Council

 



Richard Mueller - MVP Enterprise Mobility (Identity and Access)

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...