Search test library by skills or roles
⌘ K

About the test:

Test online PowerShell wykorzystuje MCQ oparty na scenariuszach do oceny kandydatów na ich biegłość w tworzeniu i uruchamianiu skryptów PowerShell, zarządzaniu systemami opartymi na systemie Windows, automatyzacji zadań systemowych i pracy z .NET Framework. Inne ważne tematy, które są omówione w teście, obejmują zarządzanie bezpieczeństwem, obsługę błędów, manipulację obiektami i zarządzanie serwerami zdalnym.

Covered skills:

  • Podstawy PowerShell
  • Moduły i funkcje
  • Zarządzanie plikami i folderami
  • Skrypty PowerShell
  • Przepływ sterowania i obsługa błędów
  • Bezpieczeństwo i uprawnienia

Try practice test
9 reasons why
9 reasons why

Adaface Test online PowerShell is the most accurate way to shortlist Programista PowerShells



Reason #1

Tests for on-the-job skills

The Test online 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:

  • Zdolność do skutecznego wykorzystywania PowerShell do zadań automatyzacji
  • Możliwość pisania skryptów PowerShell w celu automatyzacji zadań administracyjnych systemu
  • Możliwość tworzenia i używania modułów i funkcji PowerShell
  • Zdolność do obsługi przepływu kontroli i obsługi błędów w skryptach PowerShell
  • Możliwość zarządzania plikami i folderami za pomocą poleceń PowerShell
  • Zrozumienie bezpieczeństwa i uprawnień w PowerShell
  • Zdolność do wykorzystania PowerShell do podstawowych zadań administracyjnych systemu
  • Zdolność do rozwiązywania problemów i debugowania skryptów 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

To tylko niewielka próbka z naszej biblioteki ponad 10 000 pytań. Rzeczywiste pytania dotyczące tego Test online PowerShell będzie nieobowiązany.

🧐 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

Dzięki Adaface udało nam się zoptymalizować nasz proces wstępnej selekcji o ponad 75%, oszczędzając cenny czas zarówno menedżerom ds. rekrutacji, jak i naszemu zespołowi ds. pozyskiwania talentów!


Brandon Lee, Głowa Ludu, Love, Bonito

Try practice test
Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment Test online 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 online 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

Zobacz przykładową kartę wyników
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 online PowerShell

Why you should use Test online PowerShell?

The Test online 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:

  • Wykazać solidne zrozumienie podstaw PowerShell, w tym zmiennych, typów danych, operatorów i składni poleceń.
  • Zastosuj techniki skryptów PowerShell, takie jak pętle, warunki i funkcje, aby rozwiązać złożone problemy.
  • Użyj skutecznego modułów i funkcji do zarządzania kodem i ponownym wykorzystaniem.
  • Zaimplementuj struktury przepływu kontroli i mechanizmy obsługi błędów w skryptach PowerShell, aby zapewnić niezawodne i solidne wykonanie.
  • Wykazać biegłość w zarządzaniu plikami i folderami, w tym tworzenie, modyfikowanie i usuwanie plików i katalogów za pomocą poleceń PowerShell.
  • Wykazuj znajomość bezpieczeństwa i uprawnień w PowerShell, w tym ustawienie uprawnień do plików, zarządzanie listami kontroli dostępu (ACL) i obsługę uwierzytelniania.
  • Zrozum i zastosuj najlepsze praktyki w zakresie skryptów PowerShell, w tym czytelności kodu, możliwości utrzymania i optymalizacji wydajności.
  • Wykorzystaj możliwości obiektowe PowerShell, takie jak manipulowanie obiektami i praca z rurociągami obiektowymi.
  • Wykazać biegłość w pracy ze zdalnymi systemami i zdalnie wykonywać polecenia PowerShell.
  • Zintegruj skrypty PowerShell z innymi technologiami i narzędziami, takimi jak API REST, bazy danych i platformy chmurowe.

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 online PowerShell?

  • Podstawy PowerShell

    Podstawy PowerShell odnoszą się do podstawowej wiedzy i zrozumienia języka scenariuszy PowerShell. Obejmuje takie tematy, jak CMDLET, zmienne, typy danych i użycie rurociągu. Ta umiejętność jest ważna do pomiaru, ponieważ ocenia biegłość jednostki w wykorzystaniu podstawowych pojęć PowerShell.

  • Scripting PowerShell

    Skrypty PowerShell polega na pisaniu scenariuszy za pomocą PowerShell do automatyzacji zadań i wykonywania złożonych operacji . Koncentruje się na tematach takich jak funkcje, struktury pętli, instrukcje warunkowe i operacje wejściowe/wyjściowe. Mierzenie tej umiejętności pomaga ocenić zdolność jednostki do tworzenia wydajnych i wielokrotnego użytku skryptów za pomocą Moduły i funkcji PowerShell.

  • Moduły i funkcje

    w PowerShell dotyczących tworzenia, zarządzania i wykorzystania ponownego użycia bloki kodu i biblioteki zewnętrzne. Ta umiejętność ocenia zrozumienie modułu importu/eksportu, tworzenia funkcji i użycia oraz obsługi parametrów. Pomiar tej umiejętności pomaga ocenić biegłość jednostki w budowaniu modułowych i wydajnych roztworów PowerShell.

  • Przepływ kontroli i obsługa błędów

    Obsługa kontroli w PowerShell obejmuje zarządzanie przepływem wykonywania w skryptach oraz skuteczne obsługę błędów i wyjątków. Ta umiejętność obejmuje takie tematy, jak instrukcje if/else, próba/catch bloków i obsługa błędów CMDLET. Mierzenie tej umiejętności ocenia zdolność jednostki do obsługi nieoczekiwanych scenariuszy i zapewnienia właściwej kontroli przepływu w skryptach PowerShell.

  • Zarządzanie plikami i folderami

    Zarządzanie plikami i folderami w PowerShell odnosi się do możliwości manipulowania i zarządzaj plikami i katalogami za pomocą poleceń PowerShell. Ta umiejętność obejmuje zadania, takie jak tworzenie plików, usuwanie, kopiowanie, przemieszczanie i przemieszczanie się folderów. Pomiar tej umiejętności pomaga określić biegłość jednostki w automatyzacji operacji plików i folderów za pomocą PowerShell.

  • Bezpieczeństwo i uprawnienia

    Bezpieczeństwo i uprawnienia w PowerShell obejmuje zarządzanie prawami dostępu, uprawnienia i ustawień bezpieczeństwa dla ustawień bezpieczeństwa dla pliki, foldery i systemy. Ta umiejętność ocenia wiedzę jednostki na temat poleceń i technik używanych do zarządzania użytkownikami, list kontroli dostępu (ACL) i szyfrowania. Pomiar tej umiejętności ocenia zdolność jednostki do wdrażania bezpiecznych praktyk w skryptach i systemach 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 online PowerShell to be based on.

    Zmienne PowerShell
    Operatorzy PowerShell
    Tablice PowerShell
    PowerShell Strings
    PowerShell Warunkami
    Pętle PowerShell
    Funkcje PowerShell
    Parametry PowerShell
    Obsługa błędów PowerShell
    Debugowanie skryptu PowerShell
    Moduły PowerShell
    PowerShell Script Polityce
    PowerShell pracujący z plikami
    PowerShell pracujący z folderami
    Bezpieczeństwo i uprawnienia PowerShell
    PowerShell Remoting
    Rurociąg PowerShell
    Obiekty PowerShell
    Zmienne środowiskowe PowerShell
    Wejście i wyjście skryptu PowerShell
    Wyrażenia regularne PowerShell
    Data i godzina PowerShell
    PowerShell WMI i CIM
    Manipulacja rejestru PowerShell
    PowerShell Active Directory Management
    PowerShell SharePoint Management
    Zarządzanie Exchange PowerShell
    PowerShell DSC (pożądana konfiguracja stanu)
    PowerShell zdalne z SSH
    Scrapowanie internetowe PowerShell
    Integracja API PowerShell RESTFUL
    Przetwarzanie PowerShell XML
    Przetwarzanie JSON PowerShell
    Logowanie i raportowanie PowerShell
    Rozwój GUI PowerShell
    PowerShell SQL Server Management
    PowerShell Azure Management
    PowerShell AWS Management
    PowerShell VMware Management
    Zarządzanie Hyper-V PowerShell
    Integracja serwera PowerShell Team Foundation
    Integracja PowerShell Git
    PowerShell Docker Management
    PowerShell IIS Management
    PowerShell SharePoint Management Online
    PowerShell Microsoft 365 Management
    PowerShell SharePoint online PowerShell PNP
    PowerShell Azure AD Management
    Administracja sieci PowerShell
    Zarządzanie drukarką PowerShell
    Rejestrowanie zdarzeń PowerShell
    Monitorowanie wydajności systemu PowerShell
    PowerShell Zarządzanie użytkownikami i grupami
    PowerShell Service Management
    Instalacja i zarządzanie oprogramowaniem PowerShell
    Kompresja i dekompresja pliku PowerShell
    Szyfrowanie i deszyfrowanie PowerShell
    PowerShell Hashing
    PowerShell bezpieczne zarządzanie hasłem
    Administracja zdalnego pulpitu PowerShell
    PowerShell Backup and Restore
    Planowanie zadań PowerShell
    PowerShell Active Directory Federation Services
    Zarządzanie certyfikatem PowerShell
Try practice test

What roles can I use the Test online PowerShell for?

  • Programista PowerShell
  • Administrator systemu systemu Windows
  • Inżynier systemu Windows Server
  • BI Analyst- PowerShell
  • Administrator Microsoft Exchange

How is the Test online 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

  • Wdrożyć zaawansowane techniki skrypcyjne, takie jak parametryzacja skryptów, ponowne wykorzystanie skryptu i modularyzacja skryptów.
  • Skutecznie używaj CMDLET i konstrukcji skryptów PowerShell do zarządzania Active Directory, w tym kont użytkowników, grup i jednostek organizacyjnych.
  • Wykazać znajomość pożądanej konfiguracji stanu PowerShell (DSC) i jej zastosowania w zarządzaniu infrastrukturą i konfiguracją.
  • Zrozum i wykorzystaj przepływy pracy PowerShell do wydajnego wykonywania zadań równoległych i długotrwałych.
  • Zastosuj PowerShell do automatyzacji zadań administracyjnych, takich jak konserwacja systemu, analiza dziennika i wdrażania oprogramowania.
  • Wykazać biegłość w pracy z formatami danych XML i JSON w skryptach PowerShell.
  • Wykorzystaj PowerShell do zarządzania i zapytania o systemy baz danych, takie jak SQL Server, MySQL i Oracle.
  • Zastosuj PowerShell do pracy z platformami i usługami w chmurze, takimi jak Azure, AWS i Google Cloud.
  • Wdrożyć zaawansowane mechanizmy obsługi błędów w skryptach PowerShell, w tym rejestrowanie, raportowanie i powiadomienia.
  • Wykazać wiedzę na temat najlepszych praktyk bezpieczeństwa PowerShell, w tym podpisywania skryptów, ustawień zasad wykonania i szyfrowania skryptów.
  • Zastosuj PowerShell do zarządzania technologiami wirtualizacji, takimi jak Hyper-V i VMware.

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

Singapore government logo

Menedżerowie ds. rekrutacji mieli poczucie, że dzięki technicznym pytaniom, które zadawali podczas rozmów panelowych, byli w stanie stwierdzić, którzy kandydaci uzyskali lepsze wyniki, i odróżnić się od tych, którzy również nie uzyskali takich punktów. Oni są bardzo zadowolony z jakością kandydatów wybranych do selekcji Adaface.


85%
Zmniejszenie czasu badań przesiewowych

Test online PowerShell Często zadawane pytania

Czy mogę połączyć wiele umiejętności w jedną niestandardową ocenę?

Tak, absolutnie. Oceny niestandardowe są konfigurowane na podstawie opisu stanowiska i będą zawierać pytania dotyczące wszystkich określonych umiejętności, które określasz.

Czy masz jakieś funkcje anty-cheatingowe lub proktorowe?

Mamy następujące funkcje anty-cheatingowe:

  • Pytania o niezgodne z nich
  • Proctoring IP
  • Proctoring Web
  • Proctoring kamery internetowej
  • Wykrywanie plagiatu
  • Bezpieczna przeglądarka

Przeczytaj więcej o funkcjach Proctoring.

Jak interpretować wyniki testów?

Najważniejsze, o czym należy pamiętać, jest to, że ocena jest narzędziem eliminacyjnym, a nie narzędziem wyboru. Ocena umiejętności jest zoptymalizowana, aby pomóc Ci wyeliminować kandydatów, którzy nie są technicznie zakwalifikowani do roli, nie jest zoptymalizowana, aby pomóc Ci znaleźć najlepszego kandydata do tej roli. Dlatego idealnym sposobem na wykorzystanie oceny jest podjęcie decyzji o wyniku progowym (zwykle 55%, pomagamy Ci porównać) i zaprosić wszystkich kandydatów, którzy wyniki powyżej progu na następne rundy wywiadu.

Do jakiego poziomu doświadczenia mogę użyć tego testu?

Każda ocena Adaface jest dostosowana do opisu stanowiska/ idealnego kandydującego osobowości (nasi eksperci przedmiotu będą podejmować właściwe pytania dotyczące oceny z naszej biblioteki ponad 10000 pytań). Ocenę tę można dostosować do dowolnego poziomu doświadczenia.

Czy każdy kandydat otrzymuje te same pytania?

Tak, znacznie ułatwia porównanie kandydatów. Opcje pytań MCQ i kolejność pytań są losowe. Mamy funkcje anty-cheating/proctoring. W naszym planie korporacyjnym mamy również możliwość tworzenia wielu wersji tej samej oceny z pytaniami o podobnych poziomach trudności.

Jestem kandydatem. Czy mogę spróbować testu ćwiczeniowego?

Nie. Niestety, w tej chwili nie wspieramy testów ćwiczeń. Możesz jednak użyć naszych przykładowych pytań do ćwiczeń.

Jaki jest koszt korzystania z tego testu?

Możesz sprawdzić nasze Plany cenowe.

Czy mogę dostać bezpłatny proces?

Tak, możesz zarejestrować się za darmo i podgląd tego testu.

Właśnie przeniosłem się do płatnego planu. Jak mogę poprosić o ocenę niestandardową?

Oto szybki przewodnik dotyczący jak poprosić o ocenę niestandardową na Adaface.

customers across world
Join 1200+ companies in 75+ countries.
Wypróbuj dziś najbardziej przyjazne narzędzie do oceny umiejętności.
g2 badges
Ready to use the Adaface Test online PowerShell?
Ready to use the Adaface Test online PowerShell?
Porozmawiaj z nami
ada
Ada
● Online
✖️