fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. std::wstring SID = L"S-1-5-82-1036420768-1044797643-1061213386-2937092688-4282445334";
  7.  
  8. int main() {
  9. std::wstring foo = L"Win32_SID.SID='" + SID + L"'";
  10. std::wcout << foo << L'\n';
  11. return 0;
  12. }
Success #stdin #stdout 0s 3488KB
stdin
Standard input is empty
stdout
Win32_SID.SID='S-1-5-82-1036420768-1044797643-1061213386-2937092688-4282445334'