What should you modify first?

Your network contains several servers that run Windows Server 2012 R2 and client
computers that run Windows 8.1.
You download several signed Windows PowerShell scripts from the Internet.
You need to run the PowerShell scripts on all of the servers and all of the client computers.
What should you modify first?

Your network contains several servers that run Windows Server 2012 R2 and client
computers that run Windows 8.1.
You download several signed Windows PowerShell scripts from the Internet.
You need to run the PowerShell scripts on all of the servers and all of the client computers.
What should you modify first?

A.
The environment variables on all of the servers

B.
The execution policy on all of the servers

C.
The execution policy on all of the client computers

D.
The environment variables on all client computers

Explanation:
First modify the environment variables on the server, then modify them on client computers.



Leave a Reply 16

Your email address will not be published. Required fields are marked *


CuLeBrO

CuLeBrO

This answer and explanation contradicts each other. The answer says: C) the execution policy on all of the client computers but the explanation says “First modify the environment variables on the server, then modify then on client computers”

Which one is it for real?, I have seen many other dumps with the answer: D) The environment variables on all computers.

Thanks,

jaido

jaido

answer is B… u must first set the excution policy for script u downloaded… to either unrestricted, restricted, signed or unsigned

Singh

Singh

The answer is B.

If you’ve just installed a new version of Windows on your computer or have never opened a PowerShell window before, PowerShell’s Execution Policy will probably be set to the default, which is the Restricted policy.

Monu

Monu

The scripts are to be run on both servers and clients and both by default have Restricted execution policy. Execution policy needs to be changed on both but which one should be done first? One can change the policy on either client or the server first, so the question is a tricky one.

Pirulo

Pirulo

Monu,

See my reply to Singh

Bod

Bod

I think this question you were supposed choose two of the answers.

Paul

Paul

The questions states: “What should you modify first?”

By definition you cannot do two things “first”. So there is only one answer.

Kiu

Kiu

What is the true answer?

gbj

gbj

freshly installed 2012r2:
PS C:\Users\Administrator> Get-ExecutionPolicy
RemoteSigned

and from my non modified 8.1 desktop:
PS C:\Users\gb> Get-ExecutionPolicy
Restricted

So C is the right answer as i’d have to change the client

shadabad

shadabad

according to another dumps, answer is C.

pieter

pieter

thanx, this helps indeed..:)
me as well was thinking the answert was B, nopw i understand better

JeffD

JeffD

See v.6 of this question.
Answer is C.

Explanation:
The default execution policy of Windows Server 2012 is RemoteSigned meaning that as long as a
valid signature is used on the scripts, they will run. However, the client computers have a default execution policy of restricted meaning that no scripts will run in PowerShell whatsoever, so this would have to be changed before the scripts could be executed on the client computers.