Tag Archives: usb

How do I boot from USB on Sony Vaio?

USB

How do I boot from USB on Sony Vaio? With the laptop off, simply press the Assist button and the device will boot into the Vaio Care menu, where you can then choose “Boot from USB” or somesuch.. Your machine is probably newer, but this is how it works for me. Press the assist button and immediately press F2. It will show you the boot menu.

Read More »

رفع مشکل وصل نشدن گوشی سامسونگ به کامپیوتر

گروه فنی مهندسی پرهاست ParHost.net

برای حل مشکل وصل نشدن گوشی سامسونگ به کامپیوتر باید چند کار مختلف را انجام دهید که ما در ادامه به آن‌ها اشاره می‌کنیم. قدم اول: از فعال بودن USB debugging اطمینان حاصل کنید برای اینکه سیستم عامل گوشی شما بتواند با کامپیوتر ارتباط برقرار کند، لازم است که قابلیت USB debugging در گوشی فعال شود. پس ممکن است فعال نبودن این گزینه منجر …

Read More »

بدست آوردن مشخصات فلش مموری در C# Finding a USB mass storage devices “disk letter” by its PID and VID number or name

c# Shrp Programing

void P_Add(string str_Input) { txt_new_Temp.Text += Environment.NewLine + str_Input; } private void button2_Click(object sender, EventArgs e) { ManagementObjectSearcher diskDrives = new ManagementObjectSearcher(“SELECT * FROM Win32_DiskDrive WHERE InterfaceType=’USB'”); foreach (ManagementObject diskDrive in diskDrives.Get()) { string DeviceID = diskDrive[“DeviceID”].ToString(); string DriveLetter = “”; string DriveDescription = “”; // associate physical disks with partitions ManagementObjectSearcher partitionSearcher = new ManagementObjectSearcher(String.Format( “associators of {{Win32_DiskDrive.DeviceID='{0}’}} where …

Read More »