로유에스의 개발 회피 블로그

윈도11에서 CoPilot(GPT)를 활용하여 작업 효율성 극대화하기 본문

컴퓨터,모바일 팁

윈도11에서 CoPilot(GPT)를 활용하여 작업 효율성 극대화하기

로유에스 2023. 11. 11. 03:36
728x90
반응형

※윈도우는 11이며 windows 참가자 프로그램에 가입이 되어있어야합니다.

+ 레지 변경이나 혹은 여러가지 서드파티를 이용해서 윈도우를 꾸미셨다면 그것도 초기화가 될수있으니 백업을 하는걸 권장합니다.

윈도우 windows 참가자 프로그램 가입방법

 

1. 설정에가서  windows 업데이트를 클릭

2.업데이트에서 windows 참가자 프로그램을 참여

3. 아래의 windows 참가자 프로그램에서 DEV(개발자 버전)으로 받아야합니다. 

개발자 버전에만 추가가 되었습니다.

4.이제 다운을 받고 기다리고 재부팅을합니다.

 

이제 설치 준비는 끝났습니다. 이제 우측하단의

이 copilot 아이콘을 나오게 해야합니다.

 

그러기위해선 방법이 2가지가 있습니다.

 

방법1

(아래의 Copilot in windows 기능이 있다면)

설정 => 개인 설정 => 작업 표시줄 에 들어가셔

이렇게 Copilot(미리 보기) 가 있다면 켬으로 하면 됩니다.

방법2

Copilot기능이 안보였을경우

 

이 Vivetool을 먼저 받습니다.

https://github.com/thebookisclosed/ViVe/releases

 

Releases · thebookisclosed/ViVe

C# library and console app for using new feature control APIs available in Windows 10 version 2004 and newer - thebookisclosed/ViVe

github.com

저는 찾기 쉽게 C드라이버에 넣었습니다. 이렇게

그후에 cmd로 열어주세

그후에 CMD에 

 

vivetool /enable /id:45690501

을 입력후 엔터후에 재부팅을 해주시면 됩니다.

 

당연히 궁금한게 있다면 물어보면 알려줍니다.

 

이렇게 왼측하단에 물어본다

#include <stdio.h>
#include <stdlib.h>

typedef struct Node {
    int data;
    struct Node* next;
} Node;

Node* head = NULL;

void insert(int data) {
    Node* node = (Node*)malloc(sizeof(Node));
    node->data = data;
    node->next = head;
    head = node;
}

void remove(int data) {
    if (head == NULL) return;
    if (head->data == data) {
        Node* temp = head;
        head = head->next;
        free(temp);
        return;
    }
    Node* current = head;
    while (current->next != NULL && current->next->data != data) {
        current = current->next;
    }
    if (current->next == NULL) return;
    Node* temp = current->next;
    current->next = current->next->next;
    free(temp);
}

Node* find(int data) {
    Node* current = head;
    while (current != NULL) {
        if (current->data == data) return current;
        current = current->next;
    }
    return NULL;
}

int main() {
    insert(1);
    insert(2);
    insert(3);
    insert(4);
    remove(2);
    Node* node = find(3);
    if (node != NULL) {
        printf("%d\n", node->data);
    }
    node = find(2);
    if (node == NULL) {
        printf("Node not found\n");
    }
    return 0;
}

 

이런식으로 잘 알려줍니다.

 

 

#윈도우 #코파일럿 #코파일 #GPT #window #CHAT #CHATGPT #AI #인공지능 #컴퓨터 #실시간 #무료 #사용 #사용하기

728x90
반응형