win server event log 이벤트 로그 확인
이벤트 로그 확인으로 DotNet 프로그램의 상태를 알 수 있다.
이벤트 로그 확인으로 DotNet 프로그램의 상태를 알 수 있다.
RASPBERRY via Adafruit Learning System.
Action: failed Status: 5.5.0 Diagnostic-Code: smtp;550-5.7.1 Unauthenticated email from yahoo.com is not accepted due to domain’s 550-5.7.1 DMARC policy. Please contact administrator of yahoo.com […]
via 꿈의 신소재 그래핀 / YTN 사이언스 – YouTube.
RepRap – RepRapWiki.
1. Outlook 2007에서 가져오기/내보내기 마법사를 실행합니다. [파일], [가져오기/내보내기]를 순서대로 클릭합니다. 가져오기/내보내기 마법사가 표시됩니다. 수행할 작업 선택 목록에서 [다른 프로그램이나 파일]를 선택한 후 [다음]을 클릭합니다. Express 폴더 파일이 .dbx 인 경우 내보내기로 변경해 […]
mssql express 사용시 Ms sql ldf log 용량이 커 쿼리가 안먹는 경우가 발생 할 수 있습니다.이때 다음 명령어로 해결 디비 용량 확인 실행 후
네이버가 제일 뚫기 쉬웠다는 고등학생이 개발한 프로그램
error while loading shared libraries libz.so.1 cannot open shared object file sudo apt-get install ia32-libs
소스
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
public static void RegistrySet() { // // This code example produces output similar to the following: // //NoSuchName: Return this default if NoSuchName does not exist. //(Default): 5280 //TestLong: 12345678901234 //TestArray(0): One //TestArray(1): Two //TestArray(2): Three //TestExpand: My path: %path% //TestExpand2: My path: D:\Program Files\Microsoft.NET\… // //Use the registry editor to examine the key. //Press the Enter key to delete the key // The name of the key must include a valid root. const string userRoot = "HKEY_CURRENT_USER"; const string subkey = "RegistrySetValueExample"; const string keyName = userRoot + "\\" + subkey; // An int value can be stored without specifying the // registry data type, but long values will be stored // as strings unless you specify the type. Note that // the int is stored in the default name/value // pair. Registry.SetValue(keyName, "", 5280); Registry.SetValue(keyName, "TestLong", 12345678901234, RegistryValueKind.QWord); // Strings with expandable environment variables are // stored as ordinary strings unless you specify the // data type. Registry.SetValue(keyName, "TestExpand", "My path: %path%"); Registry.SetValue(keyName, "TestExpand2", "My path: %path%", RegistryValueKind.ExpandString); // Arrays of strings are stored automatically as // MultiString. Similarly, arrays of Byte are stored // automatically as Binary. string[] strings = { "One", "Two", "Three" }; Registry.SetValue(keyName, "TestArray", strings); // Your default value is returned if the name/value pair // does not exist. string noSuch = (string)Registry.GetValue(keyName, "NoSuchName", "Return this default if NoSuchName does not exist."); Console.WriteLine("\r\nNoSuchName: {0}", noSuch); // Retrieve the int and long values, specifying // numeric default values in case the name/value pairs // do not exist. The int value is retrieved from the // default (nameless) name/value pair for the key. int tInteger = (int)Registry.GetValue(keyName, "", -1); Console.WriteLine("(Default): {0}", tInteger); long tLong = (long)Registry.GetValue(keyName, "TestLong", long.MinValue); Console.WriteLine("TestLong: {0}", tLong); // When retrieving a MultiString value, you can specify // an array for the default return value. string[] tArray = (string[])Registry.GetValue(keyName, "TestArray", new string[] { "Default if TestArray does not exist." }); for (int i = 0; i < tArray.Length; i++) { Console.WriteLine("TestArray({0}): {1}", i, tArray[i]); } // A string with embedded environment variables is not // expanded if it was stored as an ordinary string. string tExpand = (string)Registry.GetValue(keyName, "TestExpand", "Default if TestExpand does not exist."); Console.WriteLine("TestExpand: {0}", tExpand); // A string stored as ExpandString is expanded. string tExpand2 = (string)Registry.GetValue(keyName, "TestExpand2", "Default if TestExpand2 does not exist."); Console.WriteLine("TestExpand2: {0}…", tExpand2.Substring(0, 40)); Console.WriteLine("\r\nUse the registry editor to examine the key."); Console.WriteLine("Press the Enter key to delete the key."); Console.ReadLine(); Registry.CurrentUser.DeleteSubKey(subkey); } |
낱말퍼즐 잘된 사이트 crossword Cryptic crossword No 26,189 | Crosswords | The Guardian. Win phone :http://www.codeproject.com/Articles/413539/Windows-Phone-Crosswords http://www.codeproject.com/Articles/530853/Creating-a-crossword-generator
네이버 캘린더 만들기 – 1. 레이아웃 만들기, 메뉴숨기기/보이기.
500 Internal Server Error Sorry, something went wrong. A team of highly trained monkeys has been dispatched to deal with this situation. If you see […]
XImageTransform.Microsoft.BasicImage via How to print a form in landscape format automatically.
MsSql2000과 MsSql2005의 외부접속 방법 : 네이버 블로그.
SQL 서버 노출 영역 구성 via 아마그래머 :: MS-SQL 서버 원격 연결방법.
MSSQL2000에서 1433포트로 외부에서 접속이 안될 경우 : 네이버 블로그.
remark : Gmail 은 outlook 접속을 오랫동안 하지 않으면 자동으로 포트를 막음 Gmail outlookup 에서 연동하기 먼저 보안설정을 낮은 수준으로 해 놓아야 한다. 확인 메일에 […]
Copyright © 2026 | WordPress Theme by MH Themes