Search test library by skills or roles
⌘ K

About the test:

Le test en ligne PowerShell utilise des SCQ basés sur un scénario pour évaluer les candidats sur leur compétence dans la création et l'exécution de scripts PowerShell, la gestion des systèmes Windows, l'automatisation des tâches du système et le travail avec .NET Framework. Les autres sujets importants qui sont couverts dans le test comprennent la gestion de la sécurité, la gestion des erreurs, la manipulation d'objets et la gestion des serveurs distants.

Covered skills:

  • PowerShell Basics
  • Modules et fonctions
  • Gestion des fichiers et des dossiers
  • Script PowerShell
  • Contrôle le flux et la gestion des erreurs
  • Sécurité et autorisation

Try practice test
9 reasons why
9 reasons why

Adaface Test de PowerShell en ligne is the most accurate way to shortlist Développeur PowerShells



Reason #1

Tests for on-the-job skills

The Test de PowerShell en ligne 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:

  • Capacité à utiliser efficacement PowerShell pour les tâches d'automatisation
  • Capacité à rédiger des scripts PowerShell pour automatiser les tâches d'administration du système
  • Capacité à créer et à utiliser des modules et fonctions PowerShell
  • Capacité à gérer le débit de contrôle et la gestion des erreurs dans les scripts PowerShell
  • Capacité à gérer les fichiers et les dossiers à l'aide de commandes PowerShell
  • Compréhension de la sécurité et des autorisations dans PowerShell
  • Capacité à tirer parti de PowerShell pour les tâches de base de l'administration du système
  • Capacité à dépanner et à déboguer les scripts 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
Try practice test
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

Ce ne sont qu'un petit échantillon de notre bibliothèque de plus de 10 000 questions. Les questions réelles à ce sujet Test en ligne de PowerShell ne sera pas googleable.

🧐 Question

Medium

Dynamic Function Invocation
Dynamic Expressions
Array Manipulation
Function Invocation
Try practice test
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
Try practice test
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
Try practice test
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
Try practice test
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
Try practice test
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
Try practice test

Medium

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

2 mins

PowerShell
Try practice test

Hard

Execution Policy Bypass
Execution Policy
Security
Script Invocation

3 mins

PowerShell
Try practice test

Medium

Logging with Transcript
Logging
Transcription
Error Handling

2 mins

PowerShell
Try practice test

Medium

Nested Runspaces
Runspaces
Variable Scoping
Concurrency

3 mins

PowerShell
Try practice test

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
Try practice test
Error Handling with Try-Catch-Finally
Error Handling
Exceptions
Script Flow
PowerShell
Medium2 mins
Try practice test
Execution Policy Bypass
Execution Policy
Security
Script Invocation
PowerShell
Hard3 mins
Try practice test
Logging with Transcript
Logging
Transcription
Error Handling
PowerShell
Medium2 mins
Try practice test
Nested Runspaces
Runspaces
Variable Scoping
Concurrency
PowerShell
Medium3 mins
Try practice test
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

Avec Adaface, nous avons pu optimiser notre processus de sélection initiale de plus de 75 %, libérant ainsi un temps précieux tant pour les responsables du recrutement que pour notre équipe d'acquisition de talents !


Brandon Lee, Chef du personnel, Love, Bonito

Try practice test
Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment Test en ligne de 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 Test en ligne de 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 #7

Detailed scorecards & benchmarks

Along with scorecards that report the performance of the candidate in detail, you also receive a comparative analysis against the company average and industry standards.

View sample scorecard
Try practice test
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 Test de PowerShell en ligne

Why you should use Test de PowerShell en ligne?

The Test en ligne de 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:

  • Démontrez une compréhension solide des bases de PowerShell, y compris des variables, des types de données, des opérateurs et une syntaxe de commande.
  • Appliquer des techniques de script PowerShell telles que les boucles, les conditions et les fonctions pour résoudre des problèmes complexes.
  • Utilisez efficacement les modules et les fonctions pour gérer et réutiliser le code.
  • Implémentez les structures de flux de contrôle et les mécanismes de gestion des erreurs dans les scripts PowerShell pour assurer une exécution fiable et robuste.
  • Démontrer la maîtrise de la gestion des fichiers et des dossiers, y compris la création, la modification et la suppression des fichiers et répertoires à l'aide de commandes PowerShell.
  • Afficher la connaissance de la sécurité et les autorisations dans PowerShell, notamment la définition des autorisations de fichiers, la gestion des listes de contrôle d'accès (ACL) et la gestion de l'authentification.
  • Comprendre et appliquer les meilleures pratiques pour les scripts PowerShell, y compris la lisibilité du code, la maintenabilité et l'optimisation des performances.
  • Utilisez les capacités orientées objet de PowerShell, telles que la manipulation d'objets et le travail avec des pipelines d'objets.
  • Démontrer la maîtrise du travail avec les systèmes distants et l'exécution de commandes PowerShell à distance.
  • Intégrez les scripts PowerShell à d'autres technologies et outils, tels que les API REST, les bases de données et les plates-formes cloud.

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 Test de PowerShell en ligne?

  • PowerShell Basics

    Les bases de PowerShell se réfèrent aux connaissances et à la compréhension fondamentales du langage de script PowerShell. Il couvre des sujets tels que les applets de commande, les variables, les types de données et l'utilisation du pipeline. Cette compétence est importante à mesurer car elle évalue la maîtrise d'un individu dans l'utilisation des concepts principaux de PowerShell.

  • Scripting PowerShell

    Le script PowerShell implique d'écrire des scripts en utilisant PowerShell pour automatiser les tâches et effectuer des opérations complexes . Il se concentre sur des sujets tels que les fonctions, les structures de boucle, les instructions conditionnelles et les opérations d'entrée / sortie. La mesure de cette compétence aide à évaluer la capacité d'un individu à créer des scripts efficaces et réutilisables à l'aide de modules et de fonctions et fonctions de modules et fonctions

  • dans la création, la gestion et l'utilisation de réutilisables Blocs de code et bibliothèques externes. Cette compétence évalue la compréhension par un individu de l'importation / exportation des modules, de la création et de l'utilisation des fonctions et de la manipulation des paramètres. La mesure de cette compétence aide à évaluer la compétence d'un individu dans la construction de solutions de powerShell modulaires et efficaces.

  • Le flux de contrôle et la gestion des erreurs

    Le flux de contrôle et la gestion des erreurs dans PowerShell implique la gestion de l'écoulement de l'exécution dans les scripts et gérer efficacement les erreurs et les exceptions. Cette compétence couvre des sujets tels que les instructions IF / ELSE, les blocs d'essai / capture et les applications de gestion des erreurs. La mesure de cette compétence évalue la capacité d'un individu à gérer les scénarios inattendus et à garantir un contrôle de flux approprié dans les scripts PowerShell.

  • Gestion des fichiers et des dossiers

    La gestion des fichiers et des dossiers dans PowerShell fait référence à la capacité de manipuler et gérer les fichiers et les répertoires à l'aide de commandes PowerShell. Cette compétence couvre des tâches telles que la création de fichiers, la suppression, la copie, le déplacement et la traversée du dossier. La mesure de cette compétence aide à déterminer la compétence d'un individu dans l'automatisation des opérations de fichiers et de dossiers à l'aide de PowerShell.

  • La sécurité et les autorisations

    La sécurité et les autorisations dans PowerShell impliquent la gestion des droits d'accès, des autorisations et des paramètres de sécurité pour Fichiers, dossiers et systèmes. Cette compétence évalue les connaissances d'une personne sur les commandes et les techniques utilisées pour la gestion des utilisateurs, les listes de contrôle d'accès (ACL) et le chiffrement. La mesure de cette compétence évalue la capacité d'un individu à mettre en œuvre des pratiques sécurisées dans les scripts et systèmes 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 Test en ligne de PowerShell to be based on.

    Variables PowerShell
    Opérateurs PowerShell
    Tableaux de powershell
    Crises PowerShell
    PowerShell Conditionals
    Boucles PowerShell
    Fonctions PowerShell
    Paramètres PowerShell
    Gestion des erreurs de PowerShell
    Débogage du script PowerShell
    Modules PowerShell
    Politiques d'exécution du script PowerShell
    PowerShell travaillant avec les fichiers
    PowerShell travaillant avec les dossiers
    Sécurité et autorisation PowerShell
    PowerShell Remoting
    Pipeline PowerShell
    Objets PowerShell
    Variables de l'environnement PowerShell
    Entrée et sortie du script PowerShell
    PowerShell Expressions régulières
    PowerShell Date and Heure
    PowerShell WMI et CIM
    Manipulation du registre de PowerShell
    PowerShell Active Directory Management
    PowerShell SharePoint Management
    Gestion de l'échange de PowerShell
    PowerShell DSC (configuration d'état souhaitée)
    PowerShell à distance avec SSH
    Stracage du Web PowerShell
    PowerShell RESTFul API Intégration
    Traitement PowerShell XML
    PowerShell JSON Traitement
    Journalisation et rapport de PowerShell
    PowerShell GUI Development
    PowerShell SQL Server Management
    PowerShell Azure Management
    Gestion de PowerShell AWS
    Gestion de PowerShell VMware
    Gestion de PowerShell Hyper-V
    PowerShell Team Foundation Server Intégration
    PowerShell Git Intégration
    Gestion de PowerShell Docker
    PowerShell IIS Management
    Gestion en ligne PowerShell SharePoint
    Gestion de PowerShell Microsoft 365
    PowerShell SharePoint Online PowerShell PNP
    Gestion de publicité PowerShell Azure
    Administration du réseau PowerShell
    Gestion de l'imprimante PowerShell
    Journalisation de l'événement PowerShell
    Surveillance des performances du système PowerShell
    Gestion des utilisateurs et groupes de PowerShell
    Gestion des services PowerShell
    Installation et gestion du logiciel PowerShell
    Compression et décompression de fichiers PowerShell
    Cryptage et décryptage PowerShell
    Hachage de powershell
    Gestion de mot de passe sécurisée PowerShell
    PowerShell Remote Desktop Administration
    Sauvegarde et restauration PowerShell
    Planification des tâches PowerShell
    PowerShell Active Directory Federation Services
    Gestion du certificat PowerShell
Try practice test

What roles can I use the Test de PowerShell en ligne for?

  • Développeur PowerShell
  • Administrateur système Windows
  • Windows Server Engineer
  • BI Analyste PowerShell
  • Administrateur de Microsoft Exchange

How is the Test de PowerShell en ligne 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

  • Implémentez les techniques de script avancées, telles que le paramétrage du script, la réutilisabilité du script et la modulation du script.
  • Utilisez efficacement les applets de commande PowerShell et les constructions de script pour gérer Active Directory, y compris les comptes d'utilisateurs, les groupes et les unités organisationnelles.
  • Démontrer la connaissance de la configuration d'état PowerShell souhaitée (DSC) et de son application dans l'infrastructure et la gestion de la configuration.
  • Comprendre et utiliser des workflows PowerShell pour exécuter efficacement les tâches parallèles et longues.
  • Appliquer PowerShell pour l'automatisation des tâches administratives, telles que la maintenance du système, l'analyse des journaux et les déploiements de logiciels.
  • Démontrer la maîtrise de la travail avec les formats de données XML et JSON dans les scripts PowerShell.
  • Utilisez PowerShell pour gérer et interroger les systèmes de base de données, tels que SQL Server, MySQL et Oracle.
  • Appliquez PowerShell pour travailler avec des plates-formes et services cloud, tels que Azure, AWS et Google Cloud.
  • Implémentez les mécanismes avancés de gestion des erreurs dans les scripts PowerShell, y compris la journalisation, les rapports et les notifications.
  • Démontrer la connaissance des meilleures pratiques de sécurité PowerShell, y compris la signature de script, les paramètres de politique d'exécution et le cryptage de scripts.
  • Appliquer PowerShell pour gérer les technologies de virtualisation, telles que Hyper-V et VMware.

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

Singapore government logo

Les responsables du recrutement ont estimé que grâce aux questions techniques qu'ils ont posées lors des entretiens avec le panel, ils étaient en mesure de déterminer quels candidats avaient obtenu de meilleurs scores et de se différencier de ceux qui avaient obtenu de moins bons résultats. Ils sont très satisfait avec la qualité des candidats présélectionnés lors de la sélection Adaface.


85%
réduction du temps de dépistage

Test de PowerShell en ligne FAQ

Puis-je combiner plusieurs compétences en une seule évaluation personnalisée?

Oui absolument. Les évaluations personnalisées sont configurées en fonction de votre description de poste et comprendront des questions sur toutes les compétences indispensables que vous spécifiez.

Avez-vous en place des fonctionnalités anti-chétion ou de proctorisation?

Nous avons les fonctionnalités anti-modification suivantes en place:

  • Questions non googléables
  • IP Proctoring
  • Proctoring Web
  • Proctoring webcam
  • Détection du plagiat
  • navigateur sécurisé

En savoir plus sur les fonctionnalités de Proctoring.

Comment interpréter les résultats des tests?

La principale chose à garder à l'esprit est qu'une évaluation est un outil d'élimination, pas un outil de sélection. Une évaluation des compétences est optimisée pour vous aider à éliminer les candidats qui ne sont pas techniquement qualifiés pour le rôle, il n'est pas optimisé pour vous aider à trouver le meilleur candidat pour le rôle. Ainsi, la façon idéale d'utiliser une évaluation consiste à décider d'un score de seuil (généralement 55%, nous vous aidons à bencher) et à inviter tous les candidats qui marquent au-dessus du seuil pour les prochains cycles d'entrevue.

Pour quel niveau d'expérience puis-je utiliser ce test?

Chaque évaluation ADAFACE est personnalisée à votre description de poste / Persona de candidats idéaux (nos experts en la matière choisiront les bonnes questions pour votre évaluation de notre bibliothèque de 10000+ questions). Cette évaluation peut être personnalisée pour tout niveau d'expérience.

Chaque candidat reçoit-il les mêmes questions?

Oui, cela vous permet de comparer les candidats. Les options pour les questions du MCQ et l'ordre des questions sont randomisées. Nous avons Anti-Cheating / Proctoring en place. Dans notre plan d'entreprise, nous avons également la possibilité de créer plusieurs versions de la même évaluation avec des questions de niveaux de difficulté similaires.

Je suis candidat. Puis-je essayer un test de pratique?

Non. Malheureusement, nous ne soutenons pas les tests de pratique pour le moment. Cependant, vous pouvez utiliser nos exemples de questions pour la pratique.

Quel est le coût de l'utilisation de ce test?

Vous pouvez consulter nos plans de prix.

Puis-je obtenir un essai gratuit?

Oui, vous pouvez vous inscrire gratuitement et prévisualiser ce test.

Je viens de déménager dans un plan payant. Comment puis-je demander une évaluation personnalisée?

Voici un guide rapide sur Comment demander une évaluation personnalisée sur Adaface.

customers across world
Join 1200+ companies in 75+ countries.
Essayez l'outil d'évaluation des compétences le plus candidat aujourd'hui.
g2 badges
Ready to use the Adaface Test en ligne de PowerShell?
Ready to use the Adaface Test en ligne de PowerShell?
Discute avec nous
logo
40 min tests.
No trick questions.
Accurate shortlisting.
Conditions Intimité Guide de confiance

🌎 Choisissez votre langue

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