信件出現This is a multi-part mess
Strange "multi-part message in MIME format" message in the body part of my sent emails
症狀: 信件出現"This is a multi-part message in mime format"

喵星人 發表在 痞客邦 留言(0) 人氣()

任務: 創見 SSD 230S 500GB 轉移Windows 10到230S 1TB
工具: 創見給的SSD SCOPE

喵星人 發表在 痞客邦 留言(0) 人氣()

SATA硬碟轉移系統到M.2 PCI-E  nvme SSD如果直接轉過去會藍屏開不了機因為nvme驅動沒起來,請參照https://linustechtips.com/topic/1498372-os-cloned-from-ssd-to-new-nvme-ssd-not-booting-confusion/轉移系統前要先打sc.exe config stornvme start= boot然後重開機立即去PE轉系統

喵星人 發表在 痞客邦 留言(0) 人氣()

image
手邊的線索只有s8p副檔名
依稀記得這個是工業用的鬼東西

喵星人 發表在 痞客邦 留言(0) 人氣()

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.ServiceProcess;
using System.Windows.Forms;
using System.Configuration.Install;
namespace logoutNAS
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
try
{
ServiceController tController = new ServiceController();
tController.MachineName = ".";
tController.ServiceName = "LanmanWorkstation";
TimeSpan timeout = TimeSpan.FromMilliseconds(1000 * 10);
// 設定一個 Timeout 時間,若超過 10 秒啟動不成功就宣告失敗!
if (tController.Status != ServiceControllerStatus.Stopped && tController.Status != ServiceControllerStatus.StopPending)
{
tController.Stop();
//tController.Close();
// 設定該服務必須在等待 timeout 時間內將狀態改變至「已關閉(Stopped)」的狀態
tController.WaitForStatus(ServiceControllerStatus.Stopped, timeout);
}
}
catch //(Exception ex)
{
throw new InstallException("服務無法停用");
}
try
{
ServiceController tController = new ServiceController();
tController.MachineName = ".";
tController.ServiceName = "LanmanWorkstation";
TimeSpan timeout = TimeSpan.FromMilliseconds(1000 * 10);
tController.Start();
tController.WaitForStatus(ServiceControllerStatus.Running, timeout);
//MessageBox.Show("已啟動服務");
label1.Text = "已登出";
}
catch
{
System.Windows.Forms.MessageBox.Show("服務無法啟動");
}

喵星人 發表在 痞客邦 留言(0) 人氣()

系統管理員身份執行Windows PowerShell
移除
Get-AppxPackage -name “Microsoft.Office.Desktop” | Remove-AppxPackage
檢查
Get-AppxPackage -name “Microsoft.Office.Desktop

喵星人 發表在 痞客邦 留言(0) 人氣()

office365_01.jpg
 
 

喵星人 發表在 痞客邦 留言(0) 人氣()

01的廣告會在閒置時跳出一堆露奶的廣告
可以手動在擋廣告軟體加入這幾個規則
mobile01.com##.fancybox-slide.fancybox-slide--html.fancybox-slide--current.fancybox-slide--complete
mobile01.com##.fancybox-stage
mobile01.com##.fancybox-inner
mobile01.com##.fancybox-bg
mobile01.com###idle_content > h2.u-tac.l-heading--lg:first-child
要跳出廣告可以,但別造成別人的困擾

喵星人 發表在 痞客邦 留言(0) 人氣()

Edge、Chrome看4K影片會吃滿CPU
以下設定可以減少CPU使用量

喵星人 發表在 痞客邦 留言(0) 人氣()

L15160_OldInkBox.jpg
全新廢墨盒用一次強力清潔,一次掉1/3(墨水就不說了...)
問題是,被判定更換的廢墨盒裡面的海綿有一半沒沾到墨水

喵星人 發表在 痞客邦 留言(0) 人氣()

  • Jun 07 Tue 2022 14:12
  • 閏年

看完閏年的歷史就會知道怎麼下判斷
public static void Main()
    {
        while(true)
        {
            int year = 0;
            Console.WriteLine("請輸入一個年份: ");
            year = Convert.ToInt32(Console.ReadLine());
            //if (year % 400 == 0 || (year % 4 == 0 && year % 100 != 0))
            if ( (year % 4 == 0 && year % 100 != 0) || year % 400 == 0)
            {
                Console.WriteLine(year + "是潤年");
            }
            else
            {
                Console.WriteLine(year + "不是潤年");
            }
        }            
    }

喵星人 發表在 痞客邦 留言(0) 人氣()

Workaround for USB issues with x570/b550 : Amd (reddit.com)
AMD X570/B550的USB BUG

喵星人 發表在 痞客邦 留言(0) 人氣()

Blog Stats
⚠️

成人內容提醒

本部落格內容僅限年滿十八歲者瀏覽。
若您未滿十八歲,請立即離開。

已滿十八歲者,亦請勿將內容提供給未成年人士。