
ينشئ حسابات أجهزة Active Directory بكلمات مرور مخصصة، مع دعم تحديد موقع اختياري في الوحدة التنظيمية (OU)، وبيانات اعتماد صريحة، وإعداد علامات UAC.
NewMachineAccount.exe هو أداة بسيطة مستقلة بصيغة exe لإنشاء حسابات أجهزة جديدة بكلمة مرور مخصصة داخل نطاق (Domain) محدد.
NewMachineAccount.exe v1.0 by @decoder_it
-dc <DomainController>
-name <MachineAccount>
-domain <Domain>
-password <MachinePassword>
[-ou <OU>]
[-user <Username>]
[-pass <Password>]
[-uac <UAC Flags>]
-dc <DomainController>: يحدد وحدة تحكم النطاق (Domain Controller) المراد استخدامها.-name <MachineAccount>: اسم حساب الجهاز الذي سيتم إنشاؤه.-domain <Domain>: النطاق الذي سيتم إنشاء حساب الجهاز فيه.-password <MachinePassword>: كلمة المرور لحساب الجهاز الجديد.[-ou <OU>] (اختياري): الوحدة التنظيمية (OU) التي يجب وضع الحساب فيها.[-user <Username>] (اختياري): اسم المستخدم للمصادقة.[-pass <Password>] (اختياري): كلمة المرور للمصادقة.[-uac <UAC Flags>] (اختياري): علامات التحكم في حساب المستخدم (UAC).NewMachineAccount.exe -dc DC01 -name NewMachine -domain example.com -password StrongPass123!
NewMachineAccount.exe -dc DC02 -name TestMachine -domain test.com -password Passw0rd! -ou "OU=Computers,DC=test,DC=com" -user admin -pass AdminPass
-user و -pass.-uac تعيين تكوينات UAC محددة.@decoder_it