Search test library by skills or roles
⌘ K

About the test:

Windows系统管理在线测试使用基于方案的MCQ来评估候选人对核心Windows系统管理概念(例如Active Directory,组策略管理,网络服务和系统监视)的理解。此外,该测试可以评估候选人对脚本语言,服务器虚拟化和灾难恢复的知识。该测试旨在评估候选人有效管理基于Windows的企业环境的能力。

Covered skills:

  • Windows系统管理
  • 组策略
  • 联网
  • 服务器安全性
  • 活动目录
  • Windows Server
  • Powershell脚本
  • 网络安全

9 reasons why
9 reasons why

Adaface Windows系统管理在线测试 is the most accurate way to shortlist Windows系统管理员s



Reason #1

Tests for on-the-job skills

The Windows系统管理在线测试 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:

  • 能够有效管理Windows系统管理任务
  • 精通Active Directory Management
  • 小组政策实施和管理方面的专业知识
  • Windows服务器设置和配置的强大知识
  • 擅长计算机网络和故障排除
  • 精通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多个问题的一个小样本。关于此的实际问题 Windows系统管理在线测试 将是不可行的.

🧐 Question

Medium

Active Directory Replication Issues
Active Directory Replication
Event Log Analysis
Network Troubleshooting
Solve
You are an experienced Windows Server administrator tasked with resolving a complex Active Directory replication issue across multiple sites. Users have reported authentication problems and inconsistent Group Policy applications. Upon examining the Event Logs from various Domain Controllers (DCs), you gather the following key log entries:
 image
Considering this information, what is the most appropriate first step in diagnosing and resolving this Active Directory replication issue?
A: Reinitialize the replication on DC01 to ensure it has the most current data.
B: Review and configure site link costs and schedules in Active Directory Sites and Services.
C: Perform a comprehensive network connectivity test between all sites.
D: Examine the DNS settings and records on each Domain Controller for inconsistencies.
E: Force a manual replication between DC01, DC02, and DC03 using repadmin.
F: Check firewall settings across sites for any rules that may block AD replication traffic.

Medium

Configuring Network Services
Network Services
Firewall Configuration
Solve
You are administering a Windows Server that hosts a critical application accessible within the internal network. The server is configured to use a static IP address. Your task is to ensure the server can communicate with a specific range of IP addresses on the internal network (192.168.10.0/24) while blocking all other inbound and outbound network traffic. The server also needs to be accessible via Remote Desktop for maintenance purposes. Given these requirements, which of the following configurations would best achieve this goal?
A: Configure Windows Firewall to allow inbound RDP traffic and outbound traffic to 192.168.10.0/24; block all other traffic.
B: Set up a Network Security Group (NSG) to allow traffic from 192.168.10.0/24 and enable RDP access.
C: Implement an inbound firewall rule to allow RDP and an outbound rule to allow traffic to 192.168.10.0/24.
D: Create a VPN tunnel for the 192.168.10.0/24 subnet and configure RDP access through the VPN.
E: Enable RDP in the firewall settings and use a third-party firewall to restrict network traffic.
F: Disable the Windows Firewall and rely solely on router-based network security to manage traffic.

Medium

Remote access policy
Solve
Michael Willis created a user in Active Directory Users And Computers, and added the user to the VPN Users security group, which has a Remote Access Policy. The network admin has set the Remote Access Policy for VPN Users for Monday to Friday from 7 AM to 6 PM. Now, Michael is showing the user how to set up the VPN client for PPTP tunneling over a video conference call, but the user is not able to connect. What could be the issue?
A. The user needs a certificate for his computer.
B. The user is in a different time zone.
C. Michael forgot to select the Allow Access radio button on the Dial-In tab for the user account
D. Michael needs to configure DNS on the client computer.

Medium

Security log file
Event Viewer
Solve
Harper is hired as the system admin for an e-commerce company, Dove. There is a Windows Server 2003 system which was installed by another administrator, just before they left. The admin seems to have finished the installation, but they did not set up any configuration after the installation. Harper checks the maximum log sizes in Event Viewer, and realizes that the maximum size of the Security log is 16 MB. What can we tell on the basis of this information?

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.

Medium

Mac address and IP on router hop
Routers
Switches
Solve
Refer to the following exhibit:
 image
Host A is sending a packet to Host B. 

1. What is the source and destination MAC address at point PA?
2. What is the source and destination IP address at point PB?
// Option A
PA: source MAC - Mac-A
PA: destination MAC - Mac-B
PB: source IP - 192.168.1.1
PB: destination IP - 192.168.3.1

// Option B
PA: source MAC - Mac-A
PA: destination MAC - Mac-RA
PB: source IP - 192.168.3.3
PB: destination IP - 192.168.3.1

// Option C
PA: source MAC - Mac-A
PA: destination MAC - Mac-B
PB: source IP - 192.168.3.3
PB: destination IP - 192.168.3.1

// Option D
PA: source MAC - Mac-A
PA: destination MAC - Mac-RA
PB: source IP - 192.168.1.1
PB: destination IP - 192.168.3.1

Easy

MX Record, DMARC and Email Authentication
DNS
MX Records
DMARC
SPF
DKIM
Solve
You work as a network administrator for a company, "example.com", that recently started experiencing issues with email spoofing. To mitigate the problem, you decide to implement DMARC (Domain-based Message Authentication, Reporting & Conformance) in addition to existing SPF (Sender Policy Framework) and DKIM (DomainKeys Identified Mail) records.

Your current DNS records for example.com include the following:

- MX 10 mail.example.com (IP address 203.0.113.10)
- TXT "v=spf1 ip4:203.0.113.10 -all"
- TXT "v=DKIM1; k=rsa; p=public-key-here"

You add the following DMARC record:

- TXT "_dmarc.example.com" "v=DMARC1; p=quarantine; pct=100; rua=mailto:report@example.com"

After implementing the DMARC record, an external mail server sends an email to your domain. The email passes the SPF and DKIM checks but fails the DMARC check.

What will likely happen to the email?
A: The email will be accepted and delivered to the recipient's inbox.
B: The email will be rejected and returned to the sender as undeliverable.
C: The email might be delivered to the recipient's spam or junk folder.
D: The email will be accepted, but a report will be sent to the sender.
E: The email will be silently discarded, and the sender will not be notified.

Medium

Remote network resources
Gateway
Routing protocols
Solve
Review the following exhibit:
 image
Angelina noticed that the computers on 192.168.10.0/24 network can ping their default gateway. But they found that these computers cannot connect to any remote network resources. Which of the following is the most likely reason for this?

Medium

SSL Certificate Expiry
SSL/TLS
Network Security
Solve
You are a network administrator for an e-commerce company. The company's online store allows customers to browse products and make purchases securely over the internet. The online store uses SSL/TLS for secure communication. You receive reports that some customers are seeing a security warning in their web browsers when trying to access the online store. Upon investigation, you discover the following information:

- The SSL certificate used by the online store's web server is valid for one year and is due to expire in two days.
- The web server is configured to automatically redirect HTTP traffic to HTTPS.
- The SSL certificate was issued by a trusted certificate authority (CA), and all major web browsers have the CA's root certificate in their trusted certificate stores.
- The SSL certificate includes the correct domain name for the online store.

Given the above information, which of the following steps should be taken to resolve the issue and prevent customers from seeing the security warning?
A: Extend the validity of the current SSL certificate by one year.
B: Obtain a new SSL certificate from the same CA and install it on the web server before the current certificate expires.
C: Remove the automatic redirect from HTTP to HTTPS on the web server.
D: Ask customers to ignore the security warning and proceed to the online store.
E: Replace the SSL certificate with a self-signed certificate.
🧐 Question🔧 Skill

Medium

Active Directory Replication Issues
Active Directory Replication
Event Log Analysis
Network Troubleshooting

2 mins

Windows Administration
Solve

Medium

Configuring Network Services
Network Services
Firewall Configuration

2 mins

Windows Administration
Solve

Medium

Remote access policy

2 mins

Windows Administration
Solve

Medium

Security log file
Event Viewer

2 mins

Windows Administration
Solve

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

Medium

Mac address and IP on router hop
Routers
Switches

2 mins

Computer Networks
Solve

Easy

MX Record, DMARC and Email Authentication
DNS
MX Records
DMARC
SPF
DKIM

2 mins

Computer Networks
Solve

Medium

Remote network resources
Gateway
Routing protocols

3 mins

Computer Networks
Solve

Medium

SSL Certificate Expiry
SSL/TLS
Network Security

2 mins

Computer Networks
Solve
🧐 Question🔧 Skill💪 Difficulty⌛ Time
Active Directory Replication Issues
Active Directory Replication
Event Log Analysis
Network Troubleshooting
Windows Administration
Medium2 mins
Solve
Configuring Network Services
Network Services
Firewall Configuration
Windows Administration
Medium2 mins
Solve
Remote access policy
Windows Administration
Medium2 mins
Solve
Security log file
Event Viewer
Windows Administration
Medium2 mins
Solve
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
Mac address and IP on router hop
Routers
Switches
Computer Networks
Medium2 mins
Solve
MX Record, DMARC and Email Authentication
DNS
MX Records
DMARC
SPF
DKIM
Computer Networks
Easy2 mins
Solve
Remote network resources
Gateway
Routing protocols
Computer Networks
Medium3 mins
Solve
SSL Certificate Expiry
SSL/TLS
Network Security
Computer Networks
Medium2 mins
Solve
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 Windows系统管理在线测试 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 Windows系统管理在线测试 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 Windows系统管理在线测试

Why you should use Windows系统管理在线测试?

The Windows系统管理在线测试 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:

  • 管理和故障排除Windows系统
  • 部署和配置Active Directory服务
  • 设计和实施小组政策
  • 管理Windows Server
  • 理解和故障排除计算机网络
  • 编写自动化powershell脚本
  • 实施服务器安全措施
  • 配置网络安全协议
  • 监视和维护服务器性能
  • 在Active Directory中管理用户帐户和权限

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 Windows系统管理在线测试?

  • Windows系统管理

    Windows系统管理涉及Windows操作系统的管理和配置,确保其平稳的操作和最佳性能。

  • Active Directory

    Active Directory是Microsoft开发的目录服务,它提供了用于管理网络资源的集中数据库,包括用户,组和计算机。

  • 组策略

    组策略是Windows中的一项功能服务器允许管理员中心管理用户和计算机设置,提供对网络环境各个方面的控制。

  • Windows Server

    Windows Server是一个专门为服务器环境设计的功能强大的操作系统,提供诸如文件共享,远程访问和应用程序分发等功能。

  • 网络

    网络涉及计算机网络的设计,实现和管理,包括网络设备的配置和协议。

  • PowerShell脚本

    PowerShell脚本是Microsoft开发的脚本语言,用于自动化Windows操作系统中的管理任务。它允许有效地脚本和自动化通用系统管理任务。

  • 服务器安全

    服务器安全性涉及实施措施来保护服务器免受未经授权的访问,潜在的威胁和漏洞,以确保完整性,机密性和数据的可用性。

  • 网络安全

    网络安全着重于将计算机网络免于未经授权的访问,网络威胁和数据泄露,并采用各种技术和实践来确保网络的机密性,完整性和可用性。

  • 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 Windows系统管理在线测试 to be based on.

    Windows安装
    用户管理
    小组管理
    组策略对象
    域控制器
    DNS配置
    DHCP设置
    文件共享和权限
    远程桌面服务
    服务器角色和功能
    Powershell cmdlet
    Powershell脚本基础知识
    活动目录组织单位(OUS)
    域信任
    证书服务
    网络协议
    TCP/IP基础知识
    防火墙和港口
    虚拟专用网络(VPN)
    互联网信息服务(IIS)
    Windows Server Update Services(WSUS)
    Windows事件查看器
    系统监控和性能调整
    备份和还原程序
    安全策略和配置
    防病毒和恶意软件保护
    入侵检测和预防系统
    访问控制列表(ACL)
    网络细分
    网络设备(路由器,交换机等)
    子网和IP地址
    网络故障排除工具
    网络协议(TCP/IP,DNS,DHCP等)
    路由和切换
    WiFi安全性
    Powershell脚本脚本高级主题
    Windows PowerShell所需状态配置(DSC)
    Windows管理仪器(WMI)
    Windows注册表
    服务器硬化
    安全最佳实践
    事件响应和恢复
    灾难恢复计划
    渗透测试
    无线网络安全
    Web应用程序安全
    网络监控和分析
    云安全性
    安全审核和合规性
    身份和访问管理
    加密和解密
    公钥基础设施(PKI)
    安全套接字层(SSL)证书

What roles can I use the Windows系统管理在线测试 for?

  • Windows系统管理员
  • Windows网络管理员
  • Windows工程师
  • 技术支持专家
  • 基础设施工程师

How is the Windows系统管理在线测试 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

  • 部署和管理DNS服务
  • 实施Windows服务器角色和功能
  • 配置网络协议和服务
  • 确保Windows服务器免于未经授权的访问
  • 故障排除网络连接问题
  • 创建和管理Windows Server虚拟机
  • 管理和故障排除Windows Server备份和恢复
  • 配置和管理DHCP服务
  • 实施服务器硬化技术
  • 分析和优化网络性能
Singapore government logo

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


85%
减少筛查时间

Windows系统管理在线测试 常见问题解答

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

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

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

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

  • 不可解决的问题
  • 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 Windows系统管理在线测试?
Ready to use the Adaface Windows系统管理在线测试?
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
✖️