Search test library by skills or roles
⌘ K

About the test:

PowerShell Online测试使用基于方案的MCQ来评估候选者在创建和运行PowerShell脚本,管理基于Windows的系统,自动化系统任务以及使用.NET Framework的熟练程度上。测试中涵盖的其他重要主题包括安全管理,错误处理,对象操纵和远程服务器管理。

Covered skills:

  • Powershell基础知识
  • 模块和功能
  • 文件和文件夹管理
  • Powershell脚本
  • 控制流和错误处理
  • 安全和权限

9 reasons why
9 reasons why

Adaface PowerShell在线测试 is the most accurate way to shortlist Powershell开发人员s



Reason #1

Tests for on-the-job skills

The PowerShell在线测试 helps recruiters and hiring managers identify qualified candidates from a pool of resumes, and helps in taking objective hiring decisions. It reduces the administrative overhead of interviewing too many candidates and saves time by filtering out unqualified candidates at the first step of the hiring process.

The test screens for the following skills that hiring managers look for in candidates:

  • 有效使用PowerShell进行自动化任务的能力
  • 能够编写PowerShell脚本以自动化系统管理任务的能力
  • 能够创建和使用PowerShell模块和功能
  • 在PowerShell脚本中处理控制流和错误处理的能力
  • 能够使用PowerShell命令管理文件和文件夹
  • 了解PowerShell的安全性和权限
  • 能够利用Powershell进行基本系统管理任务
  • 能够进行故障排除和调试Powershell脚本
Reason #2

No trick questions

no trick questions

Traditional assessment tools use trick questions and puzzles for the screening, which creates a lot of frustration among candidates about having to go through irrelevant screening assessments.

View sample questions

The main reason we started Adaface is that traditional pre-employment assessment platforms are not a fair way for companies to evaluate candidates. At Adaface, our mission is to help companies find great candidates by assessing on-the-job skills required for a role.

Why we started Adaface
Reason #3

Non-googleable questions

We have a very high focus on the quality of questions that test for on-the-job skills. Every question is non-googleable and we have a very high bar for the level of subject matter experts we onboard to create these questions. We have crawlers to check if any of the questions are leaked online. If/ when a question gets leaked, we get an alert. We change the question for you & let you know.

How we design questions

这些只是我们库中有10,000多个问题的一个小样本。关于此的实际问题 PowerShell在线测试 将是不可行的.

🧐 Question

Medium

Dynamic Function Invocation
Dynamic Expressions
Array Manipulation
Function Invocation
Solve
You're tasked with dynamically invoking functions based on their names stored in an array. Additionally, you're required to filter out functions that have the term "Admin" in their name. Your colleague suggests the following approach:
 image
Assuming no other functions are defined in the session, which of the following will $results contain after executing the script?

Medium

Error Handling with Try-Catch-Finally
Error Handling
Exceptions
Script Flow
Solve
You're analyzing a script designed to interact with a remote API. The script fetches data, processes it, and then ensures that all temporary files are deleted. You come across the following code block:
 image
After a successful data fetch, the script occasionally throws the custom error. When this happens, what will be the output and state of the system?
A: The output will display "Network error
B: The output will display "General error
C: The script will exit without any output due to the custom error, but the temporary file will be deleted.
D: The output will display "General error
E: The script will terminate prematurely, not executing the finally block.

Hard

Execution Policy Bypass
Execution Policy
Security
Script Invocation
Solve
A server you are working on has the PowerShell execution policy set to "Restricted", preventing scripts from running. You need to execute a script named "Deploy.ps1". You recall a technique to bypass the execution policy without changing it permanently. Which of the following methods would allow you to run "Deploy.ps1" without permanently altering the execution policy?
A: Set-ExecutionPolicy Unrestricted -Scope Process; .\Deploy.ps1
B: PowerShell -ExecutionPolicy Bypass -File .\Deploy.ps1
C: Invoke-Command -ScriptBlock { .\Deploy.ps1 }
D: Start-Process PowerShell -ArgumentList "-ExecutionPolicy Unrestricted", "-File .\Deploy.ps1"
E: Import-Module .\Deploy.ps1

Medium

Logging with Transcript
Logging
Transcription
Error Handling
Solve
You're reviewing a script designed to automate server maintenance tasks. One requirement is to log every action and potential error for auditing purposes. The script utilizes Start-Transcript and Stop-Transcript cmdlets to capture the session. Here's a snippet:
 image
After several successful runs, you notice that some logs are missing crucial information regarding errors. Which of the following could be a reason for the missing error details?
A: The -Append parameter is causing overwritten logs.
B: Not all errors are displayed in the console, hence not captured by the transcript.
C: The Stop-Transcript cmdlet needs to be invoked with an -ErrorAction Continue parameter.
D: Transcription only captures standard output, not error streams.
E: The log file path should be specified again in Stop-Transcript.

Medium

Nested Runspaces
Runspaces
Variable Scoping
Concurrency
Solve
You're optimizing a script for performance by leveraging runspaces to execute tasks concurrently. Each runspace is supposed to increment a shared counter object. Here's your setup:
 image
You expect the $global:counter to be 5 after all runspaces complete. However, it's not consistently reaching that value. What's the most probable reason for this behavior?
A: Runspaces can't access global variables.
B: The counter increment operation is not thread-safe, leading to race conditions.
C: The runspace pool size is limiting the number of concurrent operations.
D: The $global:counter initialization should be inside the script block.
E: The runspace pool's Close and Dispose methods are prematurely terminating the runspaces.

Easy

Registration Queue
Logic
Queues
Solve
We want to register students for the next semester. All students have a receipt which shows the amount pending for the previous semester. A positive amount (or zero) represents that the student has paid extra fees, and a negative amount represents that they have pending fees to be paid. The students are in a queue for the registration. We want to arrange the students in a way such that the students who have a positive amount on the receipt get registered first as compared to the students who have a negative amount. We are given a queue in the form of an array containing the pending amount.
For example, if the initial queue is [20, 70, -40, 30, -10], then the final queue will be [20, 70, 30, -40, -10]. Note that the sequence of students should not be changed while arranging them unless required to meet the condition.
⚠️⚠️⚠️ Note:
- The first line of the input is the length of the array. The second line contains all the elements of the array.
- The input is already parsed into an array of "strings" and passed to a function. You will need to convert string to integer/number type inside the function.
- You need to "print" the final result (not return it) to pass the test cases.

For the example discussed above, the input will be:
5
20 70 -40 30 -10

Your code needs to print the following to the standard output:
20 70 30 -40 -10

Medium

Visitors Count
Strings
Logic
Solve
A manager hires a staff member to keep a record of the number of men, women, and children visiting the museum daily. The staff will note W if any women visit, M for men, and C for children. You need to write code that takes the string that represents the visits and prints the count of men, woman and children. The sequencing should be in decreasing order. 
Example:

Input:
WWMMWWCCC

Expected Output: 
4W3C2M

Explanation: 
‘W’ has the highest count, then ‘C’, then ‘M’. 
⚠️⚠️⚠️ Note:
- The input is already parsed and passed to a function.
- You need to "print" the final result (not return it) to pass the test cases.
- If the input is- “MMW”, then the expected output is "2M1W" since there is no ‘C’.
- If any of them have the same count, the output should follow this order - M, W, C.
🧐 Question🔧 Skill

Medium

Dynamic Function Invocation
Dynamic Expressions
Array Manipulation
Function Invocation

2 mins

PowerShell
Solve

Medium

Error Handling with Try-Catch-Finally
Error Handling
Exceptions
Script Flow

2 mins

PowerShell
Solve

Hard

Execution Policy Bypass
Execution Policy
Security
Script Invocation

3 mins

PowerShell
Solve

Medium

Logging with Transcript
Logging
Transcription
Error Handling

2 mins

PowerShell
Solve

Medium

Nested Runspaces
Runspaces
Variable Scoping
Concurrency

3 mins

PowerShell
Solve

Easy

Registration Queue
Logic
Queues

30 mins

Coding
Solve

Medium

Visitors Count
Strings
Logic

30 mins

Coding
Solve
🧐 Question🔧 Skill💪 Difficulty⌛ Time
Dynamic Function Invocation
Dynamic Expressions
Array Manipulation
Function Invocation
PowerShell
Medium2 mins
Solve
Error Handling with Try-Catch-Finally
Error Handling
Exceptions
Script Flow
PowerShell
Medium2 mins
Solve
Execution Policy Bypass
Execution Policy
Security
Script Invocation
PowerShell
Hard3 mins
Solve
Logging with Transcript
Logging
Transcription
Error Handling
PowerShell
Medium2 mins
Solve
Nested Runspaces
Runspaces
Variable Scoping
Concurrency
PowerShell
Medium3 mins
Solve
Registration Queue
Logic
Queues
Coding
Easy30 minsSolve
Visitors Count
Strings
Logic
Coding
Medium30 minsSolve
Reason #4

1200+ customers in 75 countries

customers in 75 countries
Brandon

借助 Adaface,我们能够将初步筛选流程优化高达 75% 以上,为招聘经理和我们的人才招聘团队节省了宝贵的时间!


Brandon Lee, 人事主管, Love, Bonito

Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment PowerShell在线测试 in your hiring process is that it is an elimination tool, not a selection tool. In other words: you want to use the test to eliminate the candidates who do poorly on the test, not to select the candidates who come out at the top. While they are super valuable, pre-employment tests do not paint the entire picture of a candidate’s abilities, knowledge, and motivations. Multiple easy questions are more predictive of a candidate's ability than fewer hard questions. Harder questions are often "trick" based questions, which do not provide any meaningful signal about the candidate's skillset.

Science behind Adaface tests
Reason #6

1 click candidate invites

Email invites: You can send candidates an email invite to the PowerShell在线测试 from your dashboard by entering their email address.

Public link: You can create a public link for each test that you can share with candidates.

API or integrations: You can invite candidates directly from your ATS by using our pre-built integrations with popular ATS systems or building a custom integration with your in-house ATS.

invite candidates
Reason #7

Detailed scorecards & benchmarks

查看样本记分卡
Reason #8

High completion rate

Adaface tests are conversational, low-stress, and take just 25-40 mins to complete.

This is why Adaface has the highest test-completion rate (86%), which is more than 2x better than traditional assessments.

test completion rate
Reason #9

Advanced Proctoring


Learn more

About the PowerShell在线测试

Why you should use PowerShell在线测试?

The PowerShell在线测试 makes use of scenario-based questions to test for on-the-job skills as opposed to theoretical knowledge, ensuring that candidates who do well on this screening test have the relavant skills. The questions are designed to covered following on-the-job aspects:

  • 展示对PowerShell基础知识的深入了解,包括变量,数据类型,操作员和命令语法。
  • 应用PowerShell脚本技术,例如循环,条件和功能来解决复杂的问题。
  • 利用模块和功能有效地管理和重复使用代码。
  • 在powershell脚本中实现控制流结构和错误处理机制,以确保可靠且强大的执行。
  • 证明使用PowerShell命令的文件和文件夹管理的熟练程度,包括创建,修改和删除文件和目录。
  • 在PowerShell中展示有关安全性和权限的知识,包括设置文件权限,管理访问控制列表(ACL)和处理身份验证。
  • 了解并应用最佳实践,以适用于PowerShell脚本,包括代码可读性,可维护性和性能优化。
  • 利用PowerShell面向对象的功能,例如操纵对象并使用对象管道。
  • 证明熟练使用远程系统并远程执行PowerShell命令。
  • 将PowerShell脚本与其他技术和工具(例如REST API,数据库和云平台)集成在一起。

Once the test is sent to a candidate, the candidate receives a link in email to take the test. For each candidate, you will receive a detailed report with skills breakdown and benchmarks to shortlist the top candidates from your pool.

What topics are covered in the PowerShell在线测试?

  • 模块和功能

    powerShell中与可重复使用的可重复使用和利用有关的模块和功能代码块和外部库。该技能评估了个人对模块导入/导出,功能创建和用法以及参数处理的理解。衡量此技能有助于衡量个人在构建模块化和高效的Powershell解决方案方面的熟练程度。

  • 控制流量和错误处理

    控制PowerShell中的控制流量和错误处理涉及管理脚本中的执行流程并有效处理错误和例外。此技能涵盖了诸如/else语句,尝试/捕获块和错误处理CMDLET之类的主题。衡量此技能可以评估个人处理意外情况并确保在PowerShell脚本中进行适当流量控制的能力。

  • 文件和文件夹管理

    powerShell中的文件和文件夹管理是指操纵能力并使用PowerShell命令管理文件和目录。该技能涵盖了诸如文件创建,删除,复制,移动和文件夹遍历之类的任务。衡量此技能有助于使用PowerShell确定个人在自动化文件和文件夹操作方面的熟练程度。

  • 安全性和权限

    PowerShell中的安全性和权限涉及管理访问权限,权限和安全设置文件,文件夹和系统。该技能评估了个人对用户管理,访问控制列表(ACL)和加密的命令和技术的了解。衡量此技能评估个人在PowerShell脚本和系统中实施安全实践的能力。

  • Full list of covered topics

    The actual topics of the questions in the final test will depend on your job description and requirements. However, here's a list of topics you can expect the questions for PowerShell在线测试 to be based on.

    powershell变量
    Powershell操作员
    Powershell阵列
    Powershell弦
    Powershell条件
    Powershell循环
    Powershell功能
    powershell参数
    Powershell错误处理
    PowerShell脚本调试
    Powershell模块
    PowerShell脚本执行策略
    powershell与文件一起工作
    Powershell与文件夹一起工作
    Powershell安全和权限
    powershell远程
    Powershell管道
    powershell对象
    Powershell环境变量
    PowerShell脚本输入和输出
    Powershell正则表达式
    powershell日期和时间
    Powershell WMI和CIM
    Powershell注册表操作
    Powershell Active Directory Management
    Powershell SharePoint管理
    Powershell交换管理
    Powershell DSC(所需状态配置)
    powershell与SSH遥控
    PowerShell网络刮擦
    PowerShell Restful API集成
    PowerShell XML处理
    Powershell JSON处理
    Powershell记录和报告
    Powershell GUI开发
    PowerShell SQL Server管理
    Powershell Azure管理
    PowerShell AWS管理
    PowerShell VMware管理
    Powershell Hyper-V管理
    Powershell团队基金会服务器集成
    Powershell GIT集成
    Powershell Docker管理
    Powershell IIS管理
    PowerShell SharePoint在线管理
    Powershell Microsoft 365管理
    PowerShell SharePoint Online PowerShell PNP
    Powershell Azure广告管理
    Powershell网络管理
    PowerShell打印机管理
    PowerShell活动记录
    Powershell系统性能监控
    PowerShell用户和组管理
    PowerShell服务管理
    PowerShell软件安装和管理
    PowerShell文件压缩和减压
    Powershell加密和解密
    Powershell哈希
    PowerShell安全密码管理
    Powershell远程桌面管理
    powershell备份和还原
    PowerShell任务计划
    Powershell Active Directory联合服务服务
    Powershell证书管理

What roles can I use the PowerShell在线测试 for?

  • Powershell开发人员
  • Windows系统管理员
  • Windows Server工程师
  • BI分析师Powershell
  • Microsoft Exchange管理员

How is the PowerShell在线测试 customized for senior candidates?

For intermediate/ experienced candidates, we customize the assessment questions to include advanced topics and increase the difficulty level of the questions. This might include adding questions on topics like

  • 实施高级脚本技术,例如脚本参数化,脚本可重复使用性和脚本模块化。
  • 有效地使用PowerShell CMDLET和脚本构造来管理Active Directory,包括用户帐户,组和组织单位。
  • 展示PowerShell所需状态配置(DSC)及其在基础架构和配置管理中的应用。
  • 了解并利用PowerShell工作流程有效地运行并行和长期运行的任务。
  • 将PowerShell应用于自动化管理任务,例如系统维护,日志分析和软件部署。
  • 证明在PowerShell脚本中使用XML和JSON数据格式的熟练程度。
  • 利用PowerShell来管理和查询数据库系统,例如SQL Server,MySQL和Oracle。
  • 将PowerShell应用于使用云平台和服务(例如Azure,AWS和Google Cloud)。
  • 在PowerShell脚本中实施高级错误处理机制,包括记录,报告和通知。
  • 展示有关PowerShell安全性最佳实践的知识,包括脚本签名,执行策略设置和脚本加密。
  • 将PowerShell应用于管理虚拟化技术,例如Hyper-V和VMware。

The coding question for experienced candidates will be of a higher difficulty level to evaluate more hands-on experience.

Singapore government logo

招聘经理认为,通过小组面试中提出的技术问题,他们能够判断哪些候选人得分更高,并与得分较差的候选人区分开来。他们是 非常满意 通过 Adaface 筛选入围的候选人的质量。


85%
减少筛查时间

PowerShell在线测试 常见问题解答

我可以将多个技能结合在一起,为一个自定义评估吗?

是的,一点没错。自定义评估是根据您的职位描述进行的,并将包括有关您指定的所有必备技能的问题。

您是否有任何反交换或策略功能?

我们具有以下反交易功能:

  • 不可解决的问题
  • IP策略
  • Web Protoring
  • 网络摄像头Proctoring
  • 窃检测
  • 安全浏览器

阅读有关[Proctoring功能](https://www.adaface.com/proctoring)的更多信息。

如何解释考试成绩?

要记住的主要问题是评估是消除工具,而不是选择工具。优化了技能评估,以帮助您消除在技术上没有资格担任该角色的候选人,它没有进行优化以帮助您找到该角色的最佳候选人。因此,使用评估的理想方法是确定阈值分数(通常为55%,我们为您提供基准测试),并邀请所有在下一轮面试中得分高于门槛的候选人。

我可以使用该测试的经验水平?

每个ADAFACE评估都是为您的职位描述/理想候选角色定制的(我们的主题专家将从我们的10000多个问题的图书馆中选择正确的问题)。可以为任何经验级别定制此评估。

每个候选人都会得到同样的问题吗?

是的,这使您比较候选人变得容易得多。 MCQ问题的选项和问题顺序是随机的。我们有[抗欺骗/策略](https://www.adaface.com/proctoring)功能。在我们的企业计划中,我们还可以选择使用类似难度级别的问题创建多个版本的相同评估。

我是候选人。我可以尝试练习测试吗?

不,不幸的是,我们目前不支持实践测试。但是,您可以使用我们的[示例问题](https://www.adaface.com/questions)进行练习。

使用此测试的成本是多少?

您可以查看我们的[定价计划](https://www.adaface.com/pricing/)。

我可以免费试用吗?

我刚刚搬到了一个付费计划。我如何要求自定义评估?

customers across world
Join 1200+ companies in 75+ countries.
立即尝试最候选的友好技能评估工具。
g2 badges
Ready to use the Adaface PowerShell在线测试?
Ready to use the Adaface PowerShell在线测试?
logo
40 min tests.
No trick questions.
Accurate shortlisting.
术语 隐私 信任指南

🌎选择您的语言

English Norsk Dansk Deutsche Nederlands Svenska Français Español Chinese (简体中文) Italiano Japanese (日本語) Polskie Português Russian (русский)
ada
Ada
● Online
Previous
Score: NA
Next
✖️