有人可以帮我把这个 .cmd 翻译成 c#
@echo off
title Windows Activation check by dsoft
cscript C:\Windows\system32\slmgr.vbs /dli | FIND "259200" >NUL
IF '%ERRORLEVEL%' EQU '0' (
echo Windows is already activated.
) ELSE (
echo Windows is not activated, Try later again.
)
pause