Where is sent to on windows

Where is the Send To folder in Windows 10, how to open?

The solution is simple to find and open the Send To folder in Windows 10, this example is also suitable for Windows 8.1 and Server.

In Windows 10 you can use the context menu entry «Send to» to send files to certain programs, such as the e-mail program. However, the selectable programs and shortcuts are fixed like for example the location of an Program in Windows-10. This FAQ show you how to open this Folder on all Windows OS to delete menu entries and you can add your own programs and shortcuts to the Send To menu via Drag and Drop like the example create desktop shortcut in Windows 10 for a program.

Open and Edit the Send To folder in windows 10!

1. Open the send to folder via MS-Explorer or Windows Run Dialog command!

2. Enter the command shell:SendTo or in MS-Explorer address bar. (. see Image-1)

The alternativ command is:
%AppData%\Microsoft\Windows\SendTo to open the Send To folder in Windows 10.

(Image-1) Send To folder in Windows 10!

Is easy in Windows 10 Expand Send To to move files faster. If you extend the entries in the Send To pop-up menu, you can use Windows Explorer to easily move or copy files to a directory. This example to find and open the Send-To folder is suitable for all Windows OS and also a solution on older versions of Microsoft’s Windows operating systems, whether it’s a Windows desktop, tablet, Surface Pro / Go, or even a server operating system.

SEND (Transact-SQL) SEND (Transact-SQL)

Применимо к: Applies to: SQL Server SQL Server (все поддерживаемые версии) SQL Server SQL Server (all supported versions) Управляемый экземпляр SQL Azure Azure SQL Managed Instance Управляемый экземпляр SQL Azure Azure SQL Managed Instance Применимо к: Applies to: SQL Server SQL Server (все поддерживаемые версии) SQL Server SQL Server (all supported versions) Управляемый экземпляр SQL Azure Azure SQL Managed Instance Управляемый экземпляр SQL Azure Azure SQL Managed Instance

Отправляет сообщение с помощью одного или нескольких существующих диалогов. Sends a message, using one or more existing conversations.

Синтаксические обозначения в Transact-SQL Transact-SQL Syntax Conventions

Синтаксис Syntax

Ссылки на описание синтаксиса Transact-SQL для SQL Server 2014 и более ранних версий, см. в статье Документация по предыдущим версиям. To view Transact-SQL syntax for SQL Server 2014 and earlier, see Previous versions documentation.

Аргументы Arguments

ON CONVERSATION conversation_handle [.. @conversation_handle_n] ON CONVERSATION conversation_handle [.. @conversation_handle_n]
Указывает диалоги, к которым принадлежит сообщение. Specifies the conversations that the message belongs to. Аргумент conversation_handle должен содержать правильный идентификатор диалога. The conversation_handle must contain a valid conversation identifier. Один и тот же дескриптор диалога можно использовать только один раз. The same conversation handle can’t be used more than once.

MESSAGE TYPE message_type_name MESSAGE TYPE message_type_name
Указывает тип отправляемого сообщения. Specifies the message type of the sent message. Этот тип сообщений должен входить в контракты служб, используемых этими диалогами. This message type must be included in the service contracts used by these conversations. Эти контракты должны позволять отправить сообщение данного типа с этой стороны диалога. These contracts must allow the message type to be sent from this side of the conversation. Например, целевые службы диалогов могут отправлять только сообщения, отмеченные в контракте как SENT BY TARGET или SENT BY ANY. For example, the target services of the conversations may only send messages specified in the contract as SENT BY TARGET or SENT BY ANY. Если это предложение пропущено, то сообщение принадлежит к типу сообщений DEFAULT. If this clause is omitted, the message is of the message type DEFAULT.

Читайте также:  Developing games on linux

message_body_expression message_body_expression
Содержит выражение, представляющее тело сообщения. Provides an expression representing the message body. Выражение message_body_expression является необязательным. The message_body_expression is optional. Однако если аргумент message_body_expression указан, то выражение должно иметь тип, преобразуемый в тип varbinary(max). However, if the message_body_expression is present the expression must be of a type that can be converted to varbinary(max). Выражение не может иметь значение NULL. The expression can’t be NULL. Если это предложение не указано, то тело сообщения пустое. If this clause is omitted, the message body is empty.

Комментарии Remarks

Если инструкция SEND не является первой в пакете или хранимой процедуре, предшествующая ей инструкция должна заканчиваться точкой с запятой (;). If the SEND statement isn’t the first statement in a batch or stored procedure, the preceding statement must be terminated with a semicolon (;).

Инструкция SEND передает сообщение от служб на одном конце одного или нескольких диалогов компонента Компонент Service Broker Service Broker службам на другом конце этих диалогов. The SEND statement transmits a message from the services on one end of one or more Компонент Service Broker Service Broker conversations to the services on the other end of these conversations. Инструкция RECEIVE используется для получения отправленного сообщения из очередей, связанных с целевыми службами. The RECEIVE statement is then used to retrieve the sent message from the queues associated with the target services.

Указываемые в предложении ON CONVERSATION дескрипторы диалогов берутся из одного из трех источников. The conversation handles supplied to the ON CONVERSATION clause comes from one of three sources:

Если отправленное сообщение не является ответом на полученное от другой службы сообщение, используйте дескриптор диалога, возвращаемый инструкцией BEGIN DIALOG, с помощью которой был создан диалог. When a sent message isn’t in response to a message received from another service, use the conversation handle that returns from the BEGIN DIALOG statement that created the conversation.

Если отправленное сообщение является ответом на полученное от другой службы сообщение, используйте дескриптор диалога, возвращенный инструкцией RECEIVE, которая вернула исходное сообщение. When a sent message is a response to a message previously received from another service, use the conversation handle returned by the RECEIVE statement that returned the original message.

Иногда код, содержащий инструкцию SEND, отделен от кода, содержащего инструкции BEGIN DIALOG или RECEIVE, которые предоставляют дескриптор диалога. The code that contains the SEND statement is sometimes separate from the code that contains either the BEGIN DIALOG or RECEIVE statements supplying conversation handle. В таких случаях дескриптор диалога должен быть одним из элементов данных в сведениях о состоянии, которые передаются в код, содержащий инструкцию SEND. In these cases, the conversation handle must be one of the data items in the state information that is passed to the code containing the SEND statement.

Читайте также:  Как подключить мышь xiaomi по bluetooth windows 10

Сообщения, отправленные службам в других экземплярах компонента Компонент SQL Server Database Engine SQL Server Database Engine , хранятся в очереди передачи текущей базы данных, пока они не будут переданы в очереди обслуживания удаленных экземпляров. Messages that are sent to services in other instances of the Компонент SQL Server Database Engine SQL Server Database Engine are stored in a transmission queue in the current database until they can be transmitted to the service queues in the remote instances. Сообщения, отправленные службам в рамках одного экземпляра компонента Компонент Database Engine Database Engine , помещаются непосредственно в связанные с этими службами очереди. Messages sent to services in the same instance of the Компонент Database Engine Database Engine are put directly into the queues associated with these services. Если условие препятствует помещению локального сообщения непосредственно в очередь целевой службы, оно будет сохранено в очереди передачи до появления такой возможности. If a condition prevents a local message from going directly into the target service queue, the transmission queue can store it until the condition resolves. Это может происходить, например, при некоторых ошибках или в случае, если очередь целевой службы неактивна. Examples of these occurrences include some types of errors or the target service queue being inactive. Просмотреть сообщения в очереди передачи можно с помощью системного представления sys.transmission_queue. You can use the sys.transmission_queue system view to see the messages in the transmission queue.

SEND — это атомарная инструкция. SEND is an atomic statement. Если с помощью инструкции не удается отправить сообщение в несколько диалогов (например, из-за того, что в одном диалоге произошла ошибка), сообщения не сохраняются в очереди передачи и не помещаются в очередь целевой службы. If a SEND statement sends a message on multiple conversations and fails, such as when a conversation is in an errored state, no messages get stored in the transmission queue or put in any target service queue.

Компонент Service Broker оптимизирует хранение и передачу сообщений, отправляемых нескольким диалогам в одной инструкции SEND. Service Broker optimizes the storage and transmission of messages that are sent on multiple conversations in the same SEND statement.

Передача сообщений, находящихся в очередях передачи экземпляра, выполняется в последовательности, которая определяется: Messages in the transmission queues for an instance are transmitted in sequence based on:

уровнем приоритета связанной с ними конечной точки диалога; The priority level of their associated conversation endpoint.

последовательности отправки в диалоге при одинаковом приоритете. Within priority level, their send sequence in the conversation.

Уровни приоритета, указанные в приоритетах диалога, применяются к сообщениям в очереди передачи, только если параметр базы данных HONOR_BROKER_PRIORITY имеет значение ON. Priority levels specified in conversation priorities only get applied to messages in the transmission queue if the HONOR_BROKER_PRIORITY database option is set to ON. Если параметр HONOR_BROKER_PRIORITY имеет значение OFF, все сообщения, помещаемые в очередь передачи для этой базы данных, получают приоритет по умолчанию, равный 5. If HONOR_BROKER_PRIORITY is set to OFF, all messages in the transmission queue for that database get assigned the default priority level of 5. Уровни приоритета не применяются к инструкции SEND, если сообщения помещаются непосредственно в очередь обслуживания одного экземпляра компонента Компонент Database Engine Database Engine . Priority levels don’t get applied to a SEND where the messages get put directly into a service queue in the same instance of the Компонент Database Engine Database Engine .

Читайте также:  Как найти принтер по локальной сети windows 10

Инструкция SEND по отдельности блокирует каждый диалог, в который отправляется сообщение, чтобы обеспечить упорядоченную доставку для каждого диалога. The SEND statement separately locks each conversation on which a message is sent to ensure per-conversation ordered delivery.

Инструкция SEND недопустима в определяемых пользователем функциях. SEND isn’t valid in a user-defined function.

Разрешения Permissions

Для отправки сообщения у текущего пользователя должно быть разрешение RECEIVE для очереди в каждой из служб, которые отправляют сообщение. To send a message, the current user must have RECEIVE permission on the queue of every service that sends the message.

Примеры Examples

В этом примере инициируется диалог и отправляется XML-сообщение. The following example starts a dialog and sends an XML message on the dialog. Чтобы отправить сообщение, в примере выполняется преобразование XML-объекта в тип varbinary(max). To send the message, the example converts the xml object to varbinary(max).

В этом примере инициируется три диалога и в каждый из них отправляется XML-сообщение. The following example starts three dialogs and sends an XML message on each of them.

where is SENT

Replies (4) 

Thanks for posting to the Vista Answers Forum.

I believe the path is C:\users\username\Documents\Fax

Please let us know if this helps.

Chris
Microsoft Answers Support Engineer
Visit our Microsoft Answers Feedback Forum and let us know what you think.

Was this reply helpful?

Sorry this didn’t help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

Thanks for trying. under that path I see 3 folders DRAFTS, INBOX, PERSONAL COVERPAGES

these are not the faxes I sent (for instance, I send many everyday and the DRAFTS’ most recent file is from February.
Also, INBOX was empty.

Was this reply helpful?

Sorry this didn’t help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

Click Start Collapse this imageExpand this image type the following Windows Fax and Scan in the Start Search box, and then press ENTER:

The Windows Fax and Scan screen comes up.

From the Menu at the top, click Tools > Fax Setting

From the tab menu select Advanced and right in front of current location is the path where the achieved faxes are stored. Copy the whole path by highlighting it (press control + C on the keyboard or right click on the highlighted text and select copy)

Click Start and paste the copied information in the Start Search box and press Enter (to paste – press control + V on the keyboard or right on the empty box and select Paste)

It should bring up the folder that contains your faxes

Please reply and let us know if your issue is resolved or if you will need further assistance

David O
Microsoft Answers Support Engineer
Visit our and let us know what you think.

Оцените статью