並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 40 件 / 41件

新着順 人気順

"Task Scheduler"の検索結果1 - 40 件 / 41件

  • Windowsのタスクスケジューラーをもっと使いこなす

    プログラムを定期的に実行する、あるいは起動時やログオン時に実行したいとき、タスクスケジューラが利用できる。 しかし、Windowsのタスクスケジューラは、Windowsの標準機能の中でも複雑なものの1つだろう。タスクスケジューラのAPIを解説したドキュメントはあるのだが、GUIアプリケーションの「タスクスケジューラ」(以下タスクスケジューラ・アプリ)については古いものしかない。 ●Task Scheduler Overview(英語) https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2008-r2-and-2008/cc721871(v=ws.11) タスクスケジュール機能は、アプリだけでなく、schtasks.exeコマンドからも操作できる。Windowsは、タスクスケジュ

      Windowsのタスクスケジューラーをもっと使いこなす
    • How to Automatically Move Files From One Folder to Another on Windows and Mac

      Whether clearing out your Downloads or organizing your tax receipts, you can automate the process with these easy techniques. Do you want to automatically move files from one folder to another on your Windows or Mac computer? Well, you can do it pretty easily on both types of computer. This guide covers how to automate your file transfer tasks on Windows and macOS. Why Move Files From One Folder t

        How to Automatically Move Files From One Folder to Another on Windows and Mac
      • Git管理 + CLI運用によるWindowsタスクスケジューラーの運用改善 - ZOZO TECH BLOG

        こんにちは、WEAR部運用改善チームの三浦です。私たちのチームでは、WEARの日々の運用業務を安全かつ効率的に行えるよう改善を行っています。今回はバッチの定期実行に使用しているWindowsのタスクスケジューラーの運用改善について紹介します。 背景 WEARではバッチをWindowsサーバー上で定期実行させており、定期実行するために タスクスケジューラー を使用しています。WEARではバッチ実行用のサーバー(バッチサーバー)を用意しており、バッチサーバーへのアクセス権限を持つ人がタスクスケジューラーの設定を下記のような画面から変更していました。 しかしこの運用方法では次のような課題がありました。 バッチサーバーへのアクセス権限がある人しかタスクの設定を見ることができない タスクスケジューラー上ではタスクの変更履歴や変更した経緯が残らない GUI上での手動変更では操作ミスが起こる 引継ぎが手

          Git管理 + CLI運用によるWindowsタスクスケジューラーの運用改善 - ZOZO TECH BLOG
        • EC2のcronバッチを「EventBridgeをトリガーにStep Functionsを起動」に置き換えると、エラーハンドリングが快適になる

          AWSのEC2で定期的なタスクを自動化するために、cronを使用しているケースも多いと思います。 しかし、Amazon Linux 2023ではcronがデフォルトで無効になっています。これはcron以外に、cronのようなバッチ実行・定期実行する仕組みがあるということなのかと思い、cronを使わずにE2上でバッチ実行・定期実行する仕組みを考えてみました。 そして、Amazon EventBridge、AWS Step Functions、およびAWS Systems Manager startAutomationExecutionを組み合わせて、EC2インスタンス上でバッチ・定期実行を試してみましたので、紹介します。 特に、Step Functionsを使用することで、エラーハンドリングや通知が容易になり、安全にバッチ実行できるようになります。 エラーハンドリングは以下の状態を把握したい

            EC2のcronバッチを「EventBridgeをトリガーにStep Functionsを起動」に置き換えると、エラーハンドリングが快適になる
          • AWS cronなタスクスケジュールをまとめてビジュアライズできるツールを作った - たまめも(tech)

            www.npmjs.com AWSのcron式でcronvできるやつ作った。便利っぽい🥳 pic.twitter.com/Sqid4kAxS5— あらたま (@ar_tama) 2022年6月18日 経緯とか もともとcronvというツールがあって(めちゃくちゃ便利)、これはcrontabをビジュアライズしてくれる君なんですが、バッチサーバをEC2からECS Task Schedulerにお引越しさせるにあたって当然使えなくなり、何時に何が動くんだっけが一覧できてほしいよな〜EventBridgeのコンソールじゃようわからんしな〜ということで作ってみました。 ついでにベース時刻に+9:00なものを食わせることでJSTにも対応しています。心の目で+9時間しなくてよくなりますね。 しくみ aws events list-rules で出てくるjsonをパース cron式をaws-cron-p

              AWS cronなタスクスケジュールをまとめてビジュアライズできるツールを作った - たまめも(tech)
            • ecspresso+ecschedule+lambrollでCI/CDを作った話 - トラストバンクテックブログ

              前回の記事から間が空いてしまいました、SREのbutadoraです。 年末に向けた準備で忙しなくしているこの頃です。 今回はとある環境で実装したCI/CDのフローを紹介したいと思います。 今回のサービスアーキテクチャ 今回はPHP製WEBサービスをデプロイする環境が必要ということで、以下の様な設計としました。 WEBサービス本体 → ALB+ECS+RDS 定時バッチサービス → ECS (Task Scheduler)+RDS ファイル設置をトリガーにしたバッチサービス → S3+Lambda(コンテナイメージ)+RDS CI/CD 簡単な構成図はこんな感じです。 大きなポイントとしては、タイトルにある3種の各デプロイツールを組み合わせることで、開発側のリソース管理を切り出しているところです。 弊社ではAWSリソースの管理をTerraformで行っていますが、図にあるようなリソースまで管

                ecspresso+ecschedule+lambrollでCI/CDを作った話 - トラストバンクテックブログ
              • Cron job editor: multiple cron jobs, calendar view, AWS & Vercel cron support | CronTool

                Debug, view, edit & learn cron expression syntax.Become a cron expert and enable a world of possibilities. Cron is a tool for scheduling repetitive tasks on Unix-like systems. It allows users to schedule commands or scripts to run at specific times, dates, or intervals. This can be used for automating system maintenance or administration, but it can also be used for other purposes such as regularl

                  Cron job editor: multiple cron jobs, calendar view, AWS & Vercel cron support | CronTool
                • ECSを動かすEventBridge SchedulerをTerraformで構築してみた - LIVESENSE ENGINEER BLOG

                  こんにちは、インフラストラクチャーグループのyjszkです。2月から入社しました。 リブセンスにはバッチをECSとEventBridge Ruleで動かしている実装があります。EventBridge Ruleがなかなかの曲者で、UTCでしか時間を指定できません。 UTCで指定されたルールはいつ動くのかがわかりづらいですし、JSTでは1つのルールで済んだものがUTCでは2つ以上に分割されてしまうこともあります。 例えば、JSTで特定の曜日に10分ごとに実行するタスクがあるとします。 */10 * * * 0-3,5-6 * これがUTCだと3つになります。これはなかなかつらいです。 0/10 0-15 ? * 4 * 0/10 15-0 ? * 5 * 0/10 * ? * 1-3,6,7 * 一方、2022年11月にリリースされたAWSの新機能EventBridge Schedulerでは

                    ECSを動かすEventBridge SchedulerをTerraformで構築してみた - LIVESENSE ENGINEER BLOG
                  • kyju.org - Piccolo - A Stackless Lua Interpreter

                    Piccolo - A Stackless Lua Interpreter 2024-05-01 History of piccolo A "Stackless" Interpreter Design Benefits of Stackless Cancellation Pre-emptive Concurrency Fuel, Pacing, and Custom Scheduling "Symmetric" Coroutines and coroutine.yieldto The "Big Lie" Rust Coroutines, Lua Coroutines, and Snarfing Zooming Out piccolo is an interpreter for the Lua language written in pure, mostly safe Rust with a

                    • Making the Tokio scheduler 10x faster | Tokio - An asynchronous Rust runtime

                      Making the Tokio scheduler 10x fasterOctober 13, 2019 We've been hard at work on the next major revision of Tokio, Rust's asynchronous runtime. Today, a complete rewrite of the scheduler has been submitted as a pull request. The result is huge performance and latency improvements. Some benchmarks saw a 10x speed up! It is always unclear how much these kinds of improvements impact "full stack" use

                      • Under the hood: Amazon Elastic Container Service and AWS Fargate increase task launch rates | Amazon Web Services

                        Containers Under the hood: Amazon Elastic Container Service and AWS Fargate increase task launch rates Since 2015, hundreds of thousands of developers have chosen Amazon Elastic Container Service (Amazon ECS) as their orchestration service for cluster management. Developers trust Amazon ECS with the lifecycle of their mission-critical applications, from initial deployment to rolling out new versio

                          Under the hood: Amazon Elastic Container Service and AWS Fargate increase task launch rates | Amazon Web Services
                        • [レポート] RustとTokioによる次世代ネットワークインフラ #reinvent #opn205 | DevelopersIO

                          こんにちは。サービスグループの武田です。開催中のre:Invent 2020でNext-gen networking infrastructure with Rust and Tokioのセッションを視聴しましたのでレポートします。 こんにちは。サービスグループの武田です。 re:Invent 2020のWave 2が開催中です。Next-gen networking infrastructure with Rust and Tokioのセッションを視聴しましたのでレポートします。 セッション概要 スピーカー Carl Lerche(AWS Speaker) Sean McArthur(AWS Speaker) タイトル Next-gen networking infrastructure with Rust and Tokio OPN205 今日のネットワークインフラストラクチャソフトウ

                            [レポート] RustとTokioによる次世代ネットワークインフラ #reinvent #opn205 | DevelopersIO
                          • AaaSからZaaSまで「as a Service」を探したら色々なサービスが見えた話 - Qiita

                            はじめに 近年IT界隈では、IaaS(Infrastructure as a Service)やPaaS(Platform as a Service)などの~~ as a Serviceという言葉をよく聞くと思います。 ここでは、それらをまとめて、 [A-Z]aaS と呼びたいと思います。 FirebaseなどのBaaS(Backend as a Service)やAWS LambdaなどのFaaS(Function as a Service)など色々な[A-Z]aaSを聞く機会が増えてきたんじゃないでしょうか。 今回は色々な[A-Z]aaSを探してみました。結果としては 910個 もの[A-Z]aaSを見つけることができました。(探した結果を全て、後半に表示してあります。) [A-Z]aaSの探し方 最初の二文字を固定して、グーグル検索のサジェストに表示されるものを収集することにします。

                              AaaSからZaaSまで「as a Service」を探したら色々なサービスが見えた話 - Qiita
                            • Design youtube

                              CHAPTER 14: DESIGN YOUTUBE In this chapter, you are asked to design YouTube. The solution to this question can be applied to other interview questions like designing a video sharing platform such as Netflix and Hulu. Figure 14-1 shows the YouTube homepage. YouTube looks simple: content creators upload videos and viewers click play. Is it really that simple? Not really. There are lots of complex te

                              • Introduction to Windows tokens for security practitioners

                                This blog series is aimed at giving defense practitioners a thorough understanding of Windows access tokens for the purposes of detection engineering. Here in Part 1, we'll cover key concepts in Windows Security. The desired outcome is to help defenders understand how access tokens work in Windows environments. In Part 2 of the series, we’ll build on the concepts outlined in Part 1 and cover how a

                                  Introduction to Windows tokens for security practitioners
                                • GitHub - breejs/bree: Bree is a Node.js and JavaScript job task scheduler with worker threads, cron, Date, and human syntax. Built for @ladjs, @forwardemail, @spamscanner, @cabinjs.

                                  // app.js const path = require('path'); // optional const ms = require('ms'); const dayjs = require('dayjs'); const Graceful = require('@ladjs/graceful'); const Cabin = require('cabin'); // required const Bree = require('bree'); // // NOTE: see the "Instance Options" section below in this README // for the complete list of options and their defaults // const bree = new Bree({ // // NOTE: by defaul

                                    GitHub - breejs/bree: Bree is a Node.js and JavaScript job task scheduler with worker threads, cron, Date, and human syntax. Built for @ladjs, @forwardemail, @spamscanner, @cabinjs.
                                  • GitHub ActionsによるWindowsタスクスケジューラの自動反映 - ZOZO TECH BLOG

                                    はじめに こんにちは。SRE部BtoBチームの田村です。BtoBチームが担当してるサービスには、クラウドで構成されているFBZ、オンプレ環境で稼働しているブランド様の自社ECシステム支援事業もあります。その自社ECシステムでは、バッチ処理が多数稼働しています(執筆時点でバッチ214本)。 バッチ処理のスケジュールはWindowsのタスクスケジューラで管理しており、定期メンテナンスや新規サービスリリースの際に運用者が手作業でタスクスケジューラの設定を更新していました。 手作業を伴い、繰り返される要素もあったため、我々のチーム内で「バッチの運用」はトイルの1つとして認識されていました。また、前回の記事と同様に、設定戻し漏れのリスク、作業工程の履歴を別帳票で管理する煩雑な運用があり、万全とは言えない状態でした。そこで、前回の記事をヒントにトイル撲滅運動としてタスクスケジューラ設定の自動反映の仕組

                                      GitHub ActionsによるWindowsタスクスケジューラの自動反映 - ZOZO TECH BLOG
                                    • Graceful shutdowns with ECS | Amazon Web Services

                                      Containers Graceful shutdowns with ECS Introduction Amazon Elastic Container Service (Amazon ECS) gives customers the flexibility to scale their containerized deployments in a variety of different ways. Tasks can be scaled-out to react to an influx of requests or they can be scaled-in to reduce cost. ECS also supports different deployment options, including rolling deployments, blue/green deployme

                                        Graceful shutdowns with ECS | Amazon Web Services
                                      • iOSでバックグラウンドファイルアップロード - OPTiM TECH BLOG

                                        こんにちは、R&Dチームの中村です。最近 iOSアプリでファイルをバックグラウンドでアップロードしたい という場面に出くわしたので、その時に調べたこと・実際に手を動かして確認するために作った簡素なアプリをまとめます。意外とバックグラウンドダウンロードに関してはそこそこあるものの、アップロードに関してまとまったものが少なかったというのも動機の1つです。確認している手元の環境は以下のようになります。 MacBook Pro 2012 Mid macOS Mojave 10.14.6(18G3020) Xcode Version 11.3 (11C29) Swift 5.1 iOS Simulator Version 11.3 iPhone 8 (iOS 13.3) 2019年のiOSバックグラウンド事情 目標 バックグランドアップロードの下調べ やってみる アップロード先サーバーの準備 Ima

                                          iOSでバックグラウンドファイルアップロード - OPTiM TECH BLOG
                                        • Optimizing WebKit & Safari for Speedometer 3.0

                                          The introduction of Speedometer 3.0 is a major step forward in making the web faster for all, and allowing Web developers to make websites and web apps that were not previously possible. In this article, we explore ways the WebKit team made performance optimizations in WebKit and Safari based on the Speedometer 3.0 benchmark. In order to make these improvements, we made an extensive use of our per

                                          • Antimalware Service Executable とは?CPU やディスクの使用率が高いのはなぜ?

                                            原文: What is Antimalware Service Executable? Why is it High CPU Disk Usage? Antimalware Service Executable とは、バックグラウンドで実行される Windows セキュリティのコンポーネントです。 しかし、時に Antimalware Service Executable が CPU を過剰に使用して、Windows 10 マシンに悪影響を与えることがあります。 この記事では、Antimalware Service Executable とは何か、なぜ CPU 使用率が高いのか、Windows 10 マシンを最適化して CPU 使用率を抑えるにはどうしたら良いかを解説します。 Antimalware Service Executable とは?Antimalware Service Exe

                                              Antimalware Service Executable とは?CPU やディスクの使用率が高いのはなぜ?
                                            • eBay’s Blazingly Fast Billion-Scale Vector Similarity Engine

                                              The Similarity Engine's use cases include item-to-item similarity for text and image modality and user-to-item personalized recommendations based on a user’s historical behavior data. Introduction Often, ecommerce marketplaces provide buyers with listings similar to those previously visited by the buyer, as well as a personalized shopping experience based on profiles, past shopping histories and b

                                                eBay’s Blazingly Fast Billion-Scale Vector Similarity Engine
                                              • Why you should take a look at Nomad before jumping on Kubernetes

                                                Why you should take a look at Nomad before jumping on Kubernetes Table of Contents Pre-introduction Recently I stumbled upon and then stumbled upon again on David Anderson’s interesting post about “new Kubernetes”, based on a discussion he had with Vallery Lancey about what they would do differently if they were rewriting Kubernetes from scratch. Interestingly, a decent part of the proposals for a

                                                • Windows で任意のコマンド(タスク)を自動実行する (schtasks) | まくまくWindowsノート

                                                  Windows の schtasks コマンドを使用すると、任意のコマンドやバッチファイルなどを指定したスケジュールで自動実行することができます(Linux の cron のようなものです)。日々のバックアップ作業、ログの取得などを自動で行うことができます。 タスクスケジューラと schtasks コマンド Windows にはタスクスケジューラ (task scheduler) サービスが標準搭載されており、ここに schtasks コマンドでタスクを登録することで、指定された時間や頻度で、任意のコマンドを自動実行してくれます(以降、タスクスケジューラに登録するタスクのことを、「スケジュールタスク」あるいは単に「タスク」と呼びます。 schtasks コマンドでは、主に下記の 6 種類のオプションを利用してスケジュールタスクの管理を行います。 これらのコマンド一覧は schtasks /

                                                    Windows で任意のコマンド(タスク)を自動実行する (schtasks) | まくまくWindowsノート
                                                  • ESP32・arduinoとmozziで作る電子楽器制作_メモ_備忘録2|fendoap

                                                    Mozziはarduinoの音響ライブラリーです。それを用いるとシンセサイザーなどが作れます。制作のメモなどをまとめています。 以下がスケッチです。 void TaskBlink( void *pvParameters ); #include <U8g2lib.h> #ifdef U8X8_HAVE_HW_SPI #include <SPI.h> #endif #ifdef U8X8_HAVE_HW_I2C #include <Wire.h> #endif U8G2_SSD1306_128X64_NONAME_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 22, /* data=*/ 21, /* cs=*/ 15, /* dc=*/ 2, /* reset=*/ 17); #define SECONDS 4; #include <MozziGuts.h> #

                                                      ESP32・arduinoとmozziで作る電子楽器制作_メモ_備忘録2|fendoap
                                                    • Phrase Expressに代わるスニペットツール! Windows版テキスト拡張ツール「aText」入門 - Ohina Work

                                                      Phrase Expressに代わるスニペットツール! Windows版テキスト拡張ツール「aText」入門 はじめに aTextは、Tran Ky Nam Softwareが開発した特定のキーを入力することで、予め設定したスニペット(定型文)を挿入したり、設定したスクリプトを起動させることができるテキスト拡張ツールです。 https://www.trankynam.com 2011年Mac OS用に提供されていましたが、2021年現在、Windowsでも利用できるようになっています。 本記事では、Windwos版のaTextのインストール方法と、使い方について紹介します。 インストール方法 Windwos版はMSストアからインストールすることができます。 https://www.microsoft.com/ja-jp/p/atext/9n68hc1srr0k?rtc=1&activeta

                                                        Phrase Expressに代わるスニペットツール! Windows版テキスト拡張ツール「aText」入門 - Ohina Work
                                                      • What Is Negative Engineering?

                                                        It was the second game of a double-header, and the Washington Nationals had a problem. Not on the field, of course: The soon-to-be World Series champions were performing beautifully. But as they waited out a rain delay, something went awry behind the scenes. A task scheduler deep within the team’s analytics infrastructure stopped running. The scheduler was in charge of collecting and aggregating g

                                                          What Is Negative Engineering?
                                                        • Schtasks.exe - Win32 apps

                                                          Enables an administrator to create, delete, query, change, run, and end scheduled tasks on a local or remote computer. Running Schtasks.exe without arguments displays the status and next run time for each registered task. For more information on Task Scheduler, see this introduction: Task Scheduler for developers. Creating a Task The following syntax is used to create a task on the local or remote

                                                            Schtasks.exe - Win32 apps
                                                          • Turborepo 1.2 – Turbo

                                                            Since releasing Turborepo v1.1 in late January, we've seen incredible adoption and community growth: 6.5k+ GitHub Stars (opens in a new tab) 140k+ weekly npm downloads (doubling since our last blog post for v1.1) 95+ OSS contributors 900+ members of the Turborepo Community Discord (opens in a new tab) 1.6 years of Time Saved through Remote Caching on Vercel, saving more than 2.5 months every week

                                                              Turborepo 1.2 – Turbo
                                                            • 【保存版】Windows10のタスクスケジューラでスリープ解除する方法(ハマりどころあり)

                                                              タスクスケジューラを使って,自動的にスリープさせたり,スリープ解除させたいことがあるかもしれません。 例えば,毎日同じ時刻に自動的にパソコンを起動して音楽を再生し,その後,ある時刻に自動的にスリープさせるなどです。 しかし,ネット上で調べた限り,現在有効ではない方法ばかりが載せられており,Windows 10の最新版では動かない方法が広く流布されているようでした。 少なくとも,現時点で有効な日本語での情報はほどんど見当たりませんでした。 代表的なハマりポイントと回避策は以下の通りです。 ・スリープはできるが,スリープ解除ができない。→PowerShellでSetSuspendStateを正しく設定する。 ・スリープ解除できるが,モニタがスリープから復帰できず,暗いままになってしまう。→WakeDisp2を使う。 ・スリープ解除までに,数十秒かかることがあり,スリープ解除に失敗したと思い込ん

                                                                【保存版】Windows10のタスクスケジューラでスリープ解除する方法(ハマりどころあり)
                                                              • The State Of Web Workers In 2021 — Smashing Magazine

                                                                The web is single-threaded. This makes it increasingly hard to write smooth and responsive apps. Workers have a bad rep, but can be an important and useful tool in any web developer’s toolbelt for these kinds of problems. Let’s get up to speed on Workers on the Web! I’m weary of always comparing the web to so-called “native” platforms like Android and iOS. The web is streaming, meaning it has none

                                                                  The State Of Web Workers In 2021 — Smashing Magazine
                                                                • Managing domain membership of dynamic fleet of EC2 instances | Amazon Web Services

                                                                  AWS Compute Blog Managing domain membership of dynamic fleet of EC2 instances This post is written by Alex Zarenin, Senior AWS Solution Architect, Microsoft Tech. Updated: February 10, 2021 1.   Introduction For most companies, a move of Microsoft workloads to AWS starts with “lift and shift” where existing workloads are moved from the on-premises data centers to the cloud. These workloads may inc

                                                                    Managing domain membership of dynamic fleet of EC2 instances | Amazon Web Services
                                                                  • Writing a task scheduler in Zig

                                                                    I'm working on an application that needs the ability to schedule tasks. Many applications have a similar need, but requirements can vary greatly. Advanced cases might require persistence and distribution, typically depending on external systems (like a database or queue) to do much of the heavy lifting. My needs are simpler: I don't have a huge variety of tasks or a high number of them. Thread-Per

                                                                    • DMMGamePlayer【ウマ娘】起動時のユーザーアカウント制御(UAC)の回避 - 気ままの独り言

                                                                      ※2021年3月14日から2021年5月31日までに公開していた実行方法を取りやめ、2021年6月1日にこの記事を更新しました。詳しくは以下で説明しております。 ※DMMGAMEPLAYER BETAは非対応です。旧型のやつをお使いください。 rizsuna.hatenablog.com ※ 2021年6月1日19:16 バッチファイルが開かない不具合を修正しました。 ウマ娘を起動するときに毎回ユーザーアカウント制御が出てきます。 最初は気にならなかったのですが、一日に何回も起動するとうんざりしてきたので、回避する方法を探してみました。応用でプリコネRにも適用できました。 こちらのブログでは、ユーザーアカウント制御を完全に無効にしない方法なので、他のアプリではユーザアカウント制御の操作が求められます。 さらに、ウマ娘を起動させたのにDMMGamePlayerも起動されるので自動で消えるよう

                                                                        DMMGamePlayer【ウマ娘】起動時のユーザーアカウント制御(UAC)の回避 - 気ままの独り言
                                                                      • バッチファイル1つで WSL をサーバ化する方法、および Windows 11 のセットアップについてのメモ - 狐の王国

                                                                        昨今 Windows 環境がたいへんデベロッパーフレンドリーになってきたので、なんか1つ WSL で開発できるような環境を持ち歩けるようにしておこうかとラップトップのパソコンを1つ調達してみたのだが、まあどうにも Windows はショートカット体系がなってなさすぎて使いにくい。 ということで WSL を常時起動しておいてサーバとして使い、Mac からリモートで使ってみることにした。ssh と vscode のリモート接続があればまあそんなに困ることはない、はず。 Windows 11 で意図したユーザー名のローカルアカウントを作る 最近の Windows は意図したユーザー名を付けるのが難しい。ssh のときなどに自動で使われるし、C:\Users 以下に作られるディレクトリ名にもなるのでホントやめて欲しい。 atmarkit.itmedia.co.jp 上記サイトによるとセットアップ中

                                                                          バッチファイル1つで WSL をサーバ化する方法、および Windows 11 のセットアップについてのメモ - 狐の王国
                                                                        • From Word to Lateral Movement in 1 Hour

                                                                          The DFIR Report Real Intrusions by Real Attackers, The Truth Behind the Intrusion Introduction In May 2021, we observed a threat actor conducting an intrusion utilizing the IcedID payloads for initial access. They later performed a number of techniques from host discovery to lateral movement, using RDP and SMB to access the file servers within an enterprise domain. IcedID (known as BokBot) first o

                                                                            From Word to Lateral Movement in 1 Hour
                                                                          • Linux_5.11 - Linux Kernel Newbies

                                                                            Linux 5.11 was released on Sun, 14 Feb 2021 Summary: This release adds supports for a new mechanism that lets software like wine handle windows syscalls in a much faster and clean manner; support for unprivileged overlayfs mounts; support for Intel SGX enclaves; support for upcoming AMD and Intel graphics hardware; faster performance and data recovery options in Btrfs; support for re-exporting via

                                                                            • Workaround for WSL2 network broken on VPN

                                                                              WSL2_VPN_Workaround_Instructions.md Overview Internet connection and DNS routing are broken from WSL2 instances, when some VPNs are active. The root cause seems to be that WSL2 and the VPN use the same IP address block, and the VPN routing clobbers WSL2's network routing. This problem is tracked in multiple microsoft/WSL issues including, but not limited to: microsoft/WSL#5068 microsoft/WSL#4277 m

                                                                                Workaround for WSL2 network broken on VPN
                                                                              • タスクスケジューラを使用しPythonスクリプトの自動化(Windows10)

                                                                                ■PC環境Windows 10 Pro ■Python 今回のPythonのバージョンは、「3.6.8」を使用しています。(Windows10)(pythonランチャーでの確認) ■Windowsタスクスケジューラの使用を開始するでは、Windowsタスクスケジューラを起動し、タスクを作成します。まずはWindowsタスクスケジューラを起動するために、Windows10のデスクトップ画面上にある「ここに入力して検索」と表示されている検索ボックスで「タスクスケジューラ」と検索します。 検索すると、検索結果が表示され、「タスクスケジューラ」のアプリが表示されますので、こちらをクリックします。 クリックすると、「タスクスケジューラ」のウインドウが表示されます。ウインドウ内に「タスクの作成」という文字がありますので、こちらをクリックします。 クリックすると、「タスクの作成」というウインドウが表示さ

                                                                                  タスクスケジューラを使用しPythonスクリプトの自動化(Windows10)
                                                                                • Tarrask malware uses scheduled tasks for defense evasion | Microsoft Security Blog

                                                                                  April 2023 update – Microsoft Threat Intelligence has shifted to a new threat actor naming taxonomy aligned around the theme of weather. HAFNIUM is now tracked as Silk Typhoon. To learn about how the new taxonomy represents the origin, unique traits, and impact of threat actors, and to get a complete mapping of threat actor names, read this blog: Microsoft shifts to a new threat actor naming taxon

                                                                                    Tarrask malware uses scheduled tasks for defense evasion | Microsoft Security Blog